com.panayotis.gnuplot.layout
Enum GridGraphLayout.Start
java.lang.Object
java.lang.Enum<GridGraphLayout.Start>
com.panayotis.gnuplot.layout.GridGraphLayout.Start
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<GridGraphLayout.Start>
- Enclosing class:
- GridGraphLayout
public static enum GridGraphLayout.Start
- extends java.lang.Enum<GridGraphLayout.Start>
Where the first graph will be put
| 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 |
UPLEFT
public static final GridGraphLayout.Start UPLEFT
UPRIGHT
public static final GridGraphLayout.Start UPRIGHT
DOWNLEFT
public static final GridGraphLayout.Start DOWNLEFT
DOWNRIGHT
public static final GridGraphLayout.Start DOWNRIGHT
values
public static final GridGraphLayout.Start[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(GridGraphLayout.Start c : GridGraphLayout.Start.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static GridGraphLayout.Start 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