public static enum MeshFactory.FaceType extends java.lang.Enum<MeshFactory.FaceType>
Enum Constant and Description |
---|
ALT_TRI
Triangular faces, using alternating directions when appropriate
|
QUAD
Quadrilateral faces
|
TRI
Triangular faces
|
Modifier and Type | Method and Description |
---|---|
static MeshFactory.FaceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeshFactory.FaceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeshFactory.FaceType QUAD
public static final MeshFactory.FaceType TRI
public static final MeshFactory.FaceType ALT_TRI
public static MeshFactory.FaceType[] values()
for (MeshFactory.FaceType c : MeshFactory.FaceType.values()) System.out.println(c);
public static MeshFactory.FaceType 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