|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LinePanel.Axis>
bb.gui.LinePanel.Axis
public static enum LinePanel.Axis
Enum of the possible orientations of the axis that components will be laid out along.
This enum is multithread safe: it is stateless (except for the enumeration of values, which are immutable).
Like all java enums, this enum is Comparable and Serializable.
Enum Constant Summary | |
---|---|
horizontal
Value for a horizontal orientation. |
|
vertical
Value for a vertical orientation. |
Method Summary | |
---|---|
static LinePanel.Axis |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LinePanel.Axis[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
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 |
Enum Constant Detail |
---|
public static final LinePanel.Axis horizontal
public static final LinePanel.Axis vertical
Method Detail |
---|
public static LinePanel.Axis[] values()
for (LinePanel.Axis c : LinePanel.Axis.values()) System.out.println(c);
public static LinePanel.Axis valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |