public static enum Graphics.GraphicsType extends java.lang.Enum<Graphics.GraphicsType>
Graphics
implementations.Enum Constant and Description |
---|
AndroidGL |
Angle |
iOSGL |
JGLFW |
LWJGL |
WebGL |
Modifier and Type | Method and Description |
---|---|
static Graphics.GraphicsType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Graphics.GraphicsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Graphics.GraphicsType AndroidGL
public static final Graphics.GraphicsType LWJGL
public static final Graphics.GraphicsType Angle
public static final Graphics.GraphicsType WebGL
public static final Graphics.GraphicsType iOSGL
public static final Graphics.GraphicsType JGLFW
public static Graphics.GraphicsType[] values()
for (Graphics.GraphicsType c : Graphics.GraphicsType.values()) System.out.println(c);
public static Graphics.GraphicsType 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