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