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