public enum EnumOptotype extends java.lang.Enum<EnumOptotype>
| Enum Constant and Description |
|---|
LANDOLT_C
LANDOLT C
|
LETTERS
LETTERS
|
NUMBERS
NUMBERS
|
PICTURES
PICTURES
|
TUMBLING_E
TUMBLING E
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumOptotype |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumOptotype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumOptotype LETTERS
public static final EnumOptotype NUMBERS
public static final EnumOptotype PICTURES
public static final EnumOptotype TUMBLING_E
public static final EnumOptotype LANDOLT_C
public static EnumOptotype[] values()
for (EnumOptotype c : EnumOptotype.values()) System.out.println(c);
public static EnumOptotype 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()