|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Direction.Dir>
org.extex.typesetter.tc.Direction.Dir
public static enum Direction.Dir
This enumeration restricts the values which can be used as components of a direction.
| Enum Constant Summary | |
|---|---|
B
The field B contains the direction component for bottom. |
|
L
The field L contains the direction component for left. |
|
R
The field R contains the direction component for right. |
|
T
The field T contains the direction component for top. |
|
| Method Summary | |
|---|---|
static Direction.Dir |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Direction.Dir[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Direction.Dir B
public static final Direction.Dir L
public static final Direction.Dir R
public static final Direction.Dir T
| Method Detail |
|---|
public static final Direction.Dir[] values()
for(Direction.Dir c : Direction.Dir.values())
System.out.println(c);
public static Direction.Dir 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 name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||