public static enum SubstanceSlices.VerticalGravity extends java.lang.Enum<SubstanceSlices.VerticalGravity>
| Enum Constant | Description |
|---|---|
BOTTOM |
Align content to the bottom edge of the parent container.
|
CENTERED |
Center content horizontally in the parent container.
|
TOP |
Align content to the top edge of the parent container.
|
| Modifier and Type | Method | Description |
|---|---|---|
static SubstanceSlices.VerticalGravity |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SubstanceSlices.VerticalGravity[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubstanceSlices.VerticalGravity TOP
public static final SubstanceSlices.VerticalGravity CENTERED
public static final SubstanceSlices.VerticalGravity BOTTOM
public static SubstanceSlices.VerticalGravity[] values()
for (SubstanceSlices.VerticalGravity c : SubstanceSlices.VerticalGravity.values()) System.out.println(c);
public static SubstanceSlices.VerticalGravity 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