@JsType(namespace="xgl.css") public enum AlignContent extends Enum<AlignContent>
Enum Constant and Description |
---|
CENTER |
FLEX_END |
FLEX_START |
INHERIT |
INITIAL |
SPACE_AROUND |
SPACE_BETWEEN |
STRETCH |
UNSET |
Modifier and Type | Method and Description |
---|---|
String |
css() |
static AlignContent |
get(String propertyName) |
static AlignContent |
getDefault() |
static AlignContent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlignContent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlignContent FLEX_START
public static final AlignContent FLEX_END
public static final AlignContent CENTER
public static final AlignContent SPACE_BETWEEN
public static final AlignContent SPACE_AROUND
public static final AlignContent STRETCH
public static final AlignContent INITIAL
public static final AlignContent INHERIT
public static final AlignContent UNSET
public static AlignContent[] values()
for (AlignContent c : AlignContent.values()) System.out.println(c);
public static AlignContent 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 static AlignContent getDefault()
public String css()
public static AlignContent get(String propertyName)
Copyright © 2018 Xalys. All rights reserved.