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