public enum FlexWrap extends Enum<FlexWrap>
Enum Constant and Description |
---|
INHERIT |
INITIAL |
NOWRAP |
WRAP |
WRAP_REVERSE |
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static FlexWrap |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlexWrap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlexWrap WRAP_REVERSE
public static FlexWrap[] values()
for (FlexWrap c : FlexWrap.values()) System.out.println(c);
public static FlexWrap 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 nullCopyright © 2018. All rights reserved.