public enum YogaOverflow extends Enum<YogaOverflow>
Modifier and Type | Method and Description |
---|---|
static YogaOverflow |
fromInt(int value) |
int |
intValue() |
static YogaOverflow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YogaOverflow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YogaOverflow VISIBLE
public static final YogaOverflow HIDDEN
public static final YogaOverflow SCROLL
public static YogaOverflow[] values()
for (YogaOverflow c : YogaOverflow.values()) System.out.println(c);
public static YogaOverflow 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 nullpublic int intValue()
public static YogaOverflow fromInt(int value)