public static enum Style.Floating extends Enum<Style.Floating>
Enum Constant and Description |
---|
InlineEnd |
InlineStart |
Left |
None |
Right |
Modifier and Type | Method and Description |
---|---|
static Style.Floating |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.Floating[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.Floating None
public static final Style.Floating Left
public static final Style.Floating Right
public static final Style.Floating InlineStart
public static final Style.Floating InlineEnd
public static Style.Floating[] values()
for (Style.Floating c : Style.Floating.values()) System.out.println(c);
public static Style.Floating valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullRevision 4.0.15 / 20220727-0149