| Enum Constant and Description |
|---|
CROSSED
The CROSSED.
|
FIXED
The FIXED.
|
FOCUSED
The FOCUSED.
|
NONE
The NONE.
|
PARALLEL
The PARALLEL.
|
RECIPROCATING
The RECIPROCATING.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumGrid |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumGrid[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumGrid FIXED
public static final EnumGrid FOCUSED
public static final EnumGrid RECIPROCATING
public static final EnumGrid PARALLEL
public static final EnumGrid CROSSED
public static final EnumGrid NONE
public static EnumGrid[] values()
for (EnumGrid c : EnumGrid.values()) System.out.println(c);
public static EnumGrid 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()