public static enum Geometry3D.BufferType extends java.lang.Enum<Geometry3D.BufferType>
Enum Constant and Description |
---|
FLOAT_BUFFER |
INT_BUFFER |
SHORT_BUFFER |
Modifier and Type | Method and Description |
---|---|
static Geometry3D.BufferType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Geometry3D.BufferType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Geometry3D.BufferType FLOAT_BUFFER
public static final Geometry3D.BufferType INT_BUFFER
public static final Geometry3D.BufferType SHORT_BUFFER
public static Geometry3D.BufferType[] values()
for (Geometry3D.BufferType c : Geometry3D.BufferType.values()) System.out.println(c);
public static Geometry3D.BufferType 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 null