Enum Constant and Description |
---|
BEFORE
Specifies a before float.
|
END
Specifies a side float that is floated toward the end-edge.
|
INSIDE
Specifies a side float that is floated toward the inside-edge.
|
NONE
Specifies that there is no float.
|
OUTSIDE
Specifies a side float that is floated toward the outside-edge.
|
START
Specifies a side float that is floated toward the start-edge.
|
Modifier and Type | Method and Description |
---|---|
static Float |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Float[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Float BEFORE
public static final Float START
public static final Float END
public static final Float INSIDE
public static final Float OUTSIDE
public static final Float NONE
public static Float[] values()
for (Float c : Float.values()) System.out.println(c);
public static Float 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 nullThis documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.