public static enum Threading.Mode extends Enum<Threading.Mode>
Enum Constant and Description |
---|
MT
Full multithreaded OpenGL,
i.e.
|
ST_AWT
Single-Threaded OpenGL on AWT EDT
|
ST_WORKER
Single-Threaded OpenGL on dedicated worker thread.
|
Modifier and Type | Field and Description |
---|---|
int |
id |
Modifier and Type | Method and 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.
|
public static final Threading.Mode MT
public static final Threading.Mode ST_AWT
public static final Threading.Mode ST_WORKER
public static Threading.Mode[] values()
for (Threading.Mode c : Threading.Mode.values()) System.out.println(c);
public static Threading.Mode 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 2010 JogAmp Community.