Enum Constant and Description |
---|
AUTO |
CENTER |
FLEX_END |
FLEX_START |
STRETCH |
Modifier and Type | Method and Description |
---|---|
static CSSAlign |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CSSAlign[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSSAlign AUTO
public static final CSSAlign FLEX_START
public static final CSSAlign CENTER
public static final CSSAlign FLEX_END
public static final CSSAlign STRETCH
public static CSSAlign[] values()
for (CSSAlign c : CSSAlign.values()) System.out.println(c);
public static CSSAlign valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null