@Deprecated public static enum Mesh.Primitive extends Enum<Mesh.Primitive>
| Enum Constant and Description |
|---|
LINE
Deprecated.
|
LINE_STRIP
Deprecated.
|
POINT
Deprecated.
|
TRIANGLE
Deprecated.
|
TRIANGLE_FAN
Deprecated.
|
TRIANGLE_STRIP
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static Mesh.Primitive |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static Mesh.Primitive[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mesh.Primitive LINE
public static final Mesh.Primitive LINE_STRIP
public static final Mesh.Primitive POINT
public static final Mesh.Primitive TRIANGLE
public static final Mesh.Primitive TRIANGLE_FAN
public static final Mesh.Primitive TRIANGLE_STRIP
public static Mesh.Primitive[] values()
for (Mesh.Primitive c : Mesh.Primitive.values()) System.out.println(c);
public static Mesh.Primitive 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 © 2008-2013. All Rights Reserved.