org.ode4j.ode
Enum OdeConfig.TRIMESH
java.lang.Object
java.lang.Enum<OdeConfig.TRIMESH>
org.ode4j.ode.OdeConfig.TRIMESH
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<OdeConfig.TRIMESH>
- Enclosing class:
- OdeConfig
public static enum OdeConfig.TRIMESH
- extends java.lang.Enum<OdeConfig.TRIMESH>
Method Summary |
static OdeConfig.TRIMESH |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OdeConfig.TRIMESH[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
DISABLED
public static final OdeConfig.TRIMESH DISABLED
GIMPACT
public static final OdeConfig.TRIMESH GIMPACT
values
public static OdeConfig.TRIMESH[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (OdeConfig.TRIMESH c : OdeConfig.TRIMESH.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static OdeConfig.TRIMESH valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null