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