public static enum BaseMesh.FaceMembers extends java.lang.Enum<BaseMesh.FaceMembers>
Enum Constant and Description |
---|
POINT0 |
POINT1 |
POINT2 |
SMOOTHING_GROUP |
TEXCOORD0 |
TEXCOORD1 |
TEXCOORD2 |
Modifier and Type | Method and Description |
---|---|
static BaseMesh.FaceMembers |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BaseMesh.FaceMembers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseMesh.FaceMembers POINT0
public static final BaseMesh.FaceMembers TEXCOORD0
public static final BaseMesh.FaceMembers POINT1
public static final BaseMesh.FaceMembers TEXCOORD1
public static final BaseMesh.FaceMembers POINT2
public static final BaseMesh.FaceMembers TEXCOORD2
public static final BaseMesh.FaceMembers SMOOTHING_GROUP
public static BaseMesh.FaceMembers[] values()
for (BaseMesh.FaceMembers c : BaseMesh.FaceMembers.values()) System.out.println(c);
public static BaseMesh.FaceMembers 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