public enum IncrementOrder extends java.lang.Enum<IncrementOrder> implements GML, Copyable
Enum Constant and Description |
---|
MINUS_X_MINUS_Y |
PLUS_X_MINUS_Y |
PLUS_X_PLUS_Y |
PLUS_Y_PLUS_X |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
copy(CopyBuilder copyBuilder) |
java.lang.Object |
copyTo(java.lang.Object target,
CopyBuilder copyBuilder) |
static IncrementOrder |
fromValue(java.lang.String v) |
GMLClass |
getGMLClass() |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static IncrementOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IncrementOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncrementOrder PLUS_X_PLUS_Y
public static final IncrementOrder PLUS_Y_PLUS_X
public static final IncrementOrder PLUS_X_MINUS_Y
public static final IncrementOrder MINUS_X_MINUS_Y
public static IncrementOrder[] values()
for (IncrementOrder c : IncrementOrder.values()) System.out.println(c);
public static IncrementOrder 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 nullpublic java.lang.String getValue()
public static IncrementOrder fromValue(java.lang.String v)
public java.lang.String toString()
toString
in class java.lang.Enum<IncrementOrder>
public GMLClass getGMLClass()
getGMLClass
in interface GML
public java.lang.Object copyTo(java.lang.Object target, CopyBuilder copyBuilder)
public java.lang.Object copy(CopyBuilder copyBuilder)