public static enum Graphics.GraphicsType extends Enum<Graphics.GraphicsType>
Graphics
implementations.Enum Constant and Description |
---|
AndroidGL |
Angle |
iOSGL |
JGLFW |
LWJGL |
LWJGL3 |
Mock |
WebGL |
Modifier and Type | Method and Description |
---|---|
static Graphics.GraphicsType |
valueOf(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 final Graphics.GraphicsType Mock
public static final Graphics.GraphicsType LWJGL3
public static Graphics.GraphicsType[] values()
for (Graphics.GraphicsType c : Graphics.GraphicsType.values()) System.out.println(c);
public static Graphics.GraphicsType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2016. All rights reserved.