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