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