Package com.jogamp.opengl
Enum Threading.Mode
- java.lang.Object
-
- java.lang.Enum<Threading.Mode>
-
- com.jogamp.opengl.Threading.Mode
-
- All Implemented Interfaces:
Serializable
,Comparable<Threading.Mode>
- Enclosing class:
- Threading
public static enum Threading.Mode extends Enum<Threading.Mode>
-
-
Field Summary
Fields Modifier and Type Field Description int
id
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Threading.Mode
valueOf(String name)
Returns the enum constant of this type with the specified name.static Threading.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MT
public static final Threading.Mode MT
-
ST_AWT
public static final Threading.Mode ST_AWT
Single-Threaded OpenGL on AWT EDT
-
ST_WORKER
public static final Threading.Mode ST_WORKER
Single-Threaded OpenGL on dedicated worker thread.
-
-
Method Detail
-
values
public static Threading.Mode[] 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 (Threading.Mode c : Threading.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Threading.Mode valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-