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