Enum Constant and Description |
---|
Center
Indicates that element is aligned in the center of the layout rectangle.
|
Far
Indicates that element is aligned far from the origin position of the layout
rectangle.
|
Near
Indicates the element be aligned near the layout.
|
None
Indicated an unspecified alignment.
|
Modifier and Type | Method and Description |
---|---|
static Alignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Alignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Alignment None
public static final Alignment Center
public static final Alignment Near
public static final Alignment Far
public static Alignment[] values()
for (Alignment c : Alignment.values()) System.out.println(c);
public static Alignment 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