static enum Pipeline.Type extends java.lang.Enum<Pipeline.Type>
| Enum Constant and Description |
|---|
JOGL |
NATIVE_D3D |
NATIVE_OGL |
NOOP |
| Modifier and Type | Method and Description |
|---|---|
static Pipeline.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Pipeline.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Pipeline.Type NATIVE_OGL
public static final Pipeline.Type NATIVE_D3D
public static final Pipeline.Type JOGL
public static final Pipeline.Type NOOP
public static Pipeline.Type[] values()
for (Pipeline.Type c : Pipeline.Type.values()) System.out.println(c);
public static Pipeline.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullCopyright 1996-2008 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms.