public static enum Style.EFlexWrap extends Enum<Style.EFlexWrap>
| Enum Constant and Description |
|---|
FlexNoWrap |
FlexWrap |
FlexWrapReverse |
| Modifier and Type | Method and Description |
|---|---|
static Style.EFlexWrap |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.EFlexWrap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.EFlexWrap FlexNoWrap
public static final Style.EFlexWrap FlexWrap
public static final Style.EFlexWrap FlexWrapReverse
public static Style.EFlexWrap[] values()
for (Style.EFlexWrap c : Style.EFlexWrap.values()) System.out.println(c);
public static Style.EFlexWrap 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