Package com.badlogic.gdx.backends.lwjgl3
Enum Lwjgl3ApplicationConfiguration.GLEmulation
- java.lang.Object
-
- java.lang.Enum<Lwjgl3ApplicationConfiguration.GLEmulation>
-
- com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration.GLEmulation
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Lwjgl3ApplicationConfiguration.GLEmulation>
- Enclosing class:
- Lwjgl3ApplicationConfiguration
public static enum Lwjgl3ApplicationConfiguration.GLEmulation extends java.lang.Enum<Lwjgl3ApplicationConfiguration.GLEmulation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANGLE_GLES20GL20GL30GL31GL32
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Lwjgl3ApplicationConfiguration.GLEmulationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Lwjgl3ApplicationConfiguration.GLEmulation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANGLE_GLES20
public static final Lwjgl3ApplicationConfiguration.GLEmulation ANGLE_GLES20
-
GL20
public static final Lwjgl3ApplicationConfiguration.GLEmulation GL20
-
GL30
public static final Lwjgl3ApplicationConfiguration.GLEmulation GL30
-
GL31
public static final Lwjgl3ApplicationConfiguration.GLEmulation GL31
-
GL32
public static final Lwjgl3ApplicationConfiguration.GLEmulation GL32
-
-
Method Detail
-
values
public static Lwjgl3ApplicationConfiguration.GLEmulation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Lwjgl3ApplicationConfiguration.GLEmulation c : Lwjgl3ApplicationConfiguration.GLEmulation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Lwjgl3ApplicationConfiguration.GLEmulation valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-