public enum VertexFieldSemantic extends java.lang.Enum<VertexFieldSemantic>
Enum Constant and Description |
---|
BINORMAL
Binormal vector
|
EDGE_CREASE
Edge crease
|
NORMAL
Normal vector
|
POSITION
Position data
|
SPECULAR
Specular colors
|
TANGENT
Tangent vector
|
USER_DATA
User data, usually for application-specific purpose
|
UV
Texture UV coordinate
|
VERTEX_COLOR
Vertex color
|
VERTEX_CREASE
Vertex crease
|
VISIBILITY
Visibility for components
|
WEIGHT
Blend weights
|
Modifier and Type | Method and Description |
---|---|
static VertexFieldSemantic |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VertexFieldSemantic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VertexFieldSemantic POSITION
public static final VertexFieldSemantic BINORMAL
public static final VertexFieldSemantic NORMAL
public static final VertexFieldSemantic TANGENT
public static final VertexFieldSemantic UV
public static final VertexFieldSemantic VERTEX_COLOR
public static final VertexFieldSemantic VERTEX_CREASE
public static final VertexFieldSemantic EDGE_CREASE
public static final VertexFieldSemantic USER_DATA
public static final VertexFieldSemantic VISIBILITY
public static final VertexFieldSemantic SPECULAR
public static final VertexFieldSemantic WEIGHT
public static VertexFieldSemantic[] values()
for (VertexFieldSemantic c : VertexFieldSemantic.values()) System.out.println(c);
public static VertexFieldSemantic 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