public enum JustifyContent extends Enum<JustifyContent>
| Enum Constant and Description |
|---|
BASELINE |
CENTER |
END |
FLEX_END |
FLEX_START |
LEFT |
RIGHT |
SPACE_AROUND |
SPACE_BETWEEN |
SPACE_EVENLY |
START |
STRETCH |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static JustifyContent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JustifyContent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JustifyContent BASELINE
public static final JustifyContent CENTER
public static final JustifyContent END
public static final JustifyContent FLEX_END
public static final JustifyContent FLEX_START
public static final JustifyContent LEFT
public static final JustifyContent RIGHT
public static final JustifyContent SPACE_AROUND
public static final JustifyContent SPACE_BETWEEN
public static final JustifyContent SPACE_EVENLY
public static final JustifyContent START
public static final JustifyContent STRETCH
public static JustifyContent[] values()
for (JustifyContent c : JustifyContent.values()) System.out.println(c);
public static JustifyContent 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 String getValue()
Copyright © 2021. All rights reserved.