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