public static enum GLProfile.ShutdownType extends Enum<GLProfile.ShutdownType>
GLProfile.shutdown(ShutdownType).
SHARED_ONLY For thread based resources only, suitable for eg. Applet restart.
COMPLETE Everything.
| Enum Constant and Description |
|---|
COMPLETE |
SHARED_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static GLProfile.ShutdownType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GLProfile.ShutdownType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GLProfile.ShutdownType SHARED_ONLY
public static final GLProfile.ShutdownType COMPLETE
public static GLProfile.ShutdownType[] values()
for (GLProfile.ShutdownType c : GLProfile.ShutdownType.values()) System.out.println(c);
public static GLProfile.ShutdownType 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.