org.xith3d.ui.hud.layout
Enum ListLayout.Alignment
java.lang.Object
java.lang.Enum<ListLayout.Alignment>
org.xith3d.ui.hud.layout.ListLayout.Alignment
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ListLayout.Alignment>
- Enclosing class:
- ListLayout
public static enum ListLayout.Alignment
- extends java.lang.Enum<ListLayout.Alignment>
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
LEFT_TOP
public static final ListLayout.Alignment LEFT_TOP
LEFT_CENTER
public static final ListLayout.Alignment LEFT_CENTER
LEFT_BOTTOM
public static final ListLayout.Alignment LEFT_BOTTOM
CENTER_TOP
public static final ListLayout.Alignment CENTER_TOP
CENTER_CENTER
public static final ListLayout.Alignment CENTER_CENTER
CENTER_BOTTOM
public static final ListLayout.Alignment CENTER_BOTTOM
RIGHT_TOP
public static final ListLayout.Alignment RIGHT_TOP
RIGHT_CENTER
public static final ListLayout.Alignment RIGHT_CENTER
RIGHT_BOTTOM
public static final ListLayout.Alignment RIGHT_BOTTOM
values
public static ListLayout.Alignment[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ListLayout.Alignment c : ListLayout.Alignment.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ListLayout.Alignment valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
isLeft
public final boolean isLeft()
isHCenter
public final boolean isHCenter()
isRight
public final boolean isRight()
isTop
public final boolean isTop()
isVCenter
public final boolean isVCenter()
isBottom
public final boolean isBottom()