public static enum Float.Type extends java.lang.Enum<Float.Type>
Enum Constant and Description |
---|
left
The image or text moves to the left in the parent element
|
none
The image or the text will be displayed just where it occurs in the
text
|
right
The image or text moves to the right in the parent element
|
Modifier and Type | Method and Description |
---|---|
static Float.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Float.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Float.Type left
public static final Float.Type right
public static final Float.Type none
public static Float.Type[] values()
for (Float.Type c : Float.Type.values()) System.out.println(c);
public static Float.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null