public enum SubdivisionElementType extends java.lang.Enum<SubdivisionElementType>
SubdivisionElement
.Enum Constant and Description |
---|
EDGE
Specifies an
SubdivisionElement.edge() . |
FACE
Specifies a
SubdivisionElement.face() . |
VERTEX
Specifies a
SubdivisionElement.vertex() . |
Modifier and Type | Method and Description |
---|---|
static SubdivisionElementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubdivisionElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubdivisionElementType EDGE
SubdivisionElement.edge()
.public static final SubdivisionElementType FACE
SubdivisionElement.face()
.public static final SubdivisionElementType VERTEX
SubdivisionElement.vertex()
.public static SubdivisionElementType[] values()
for (SubdivisionElementType c : SubdivisionElementType.values()) System.out.println(c);
public static SubdivisionElementType 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