public enum GraphicsDeviceStatus extends java.lang.Enum<GraphicsDeviceStatus>
Enum Constant and Description |
---|
Lost
The device has been lost.
|
Normal
The device is normal.
|
NotReset
The device has not been reset.
|
Modifier and Type | Method and Description |
---|---|
static GraphicsDeviceStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphicsDeviceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphicsDeviceStatus Normal
public static final GraphicsDeviceStatus Lost
public static final GraphicsDeviceStatus NotReset
public static GraphicsDeviceStatus[] values()
for (GraphicsDeviceStatus c : GraphicsDeviceStatus.values()) System.out.println(c);
public static GraphicsDeviceStatus 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 null