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