public static enum MOOSEModel.TreeType extends java.lang.Enum<MOOSEModel.TreeType>
Enum Constant and Description |
---|
AdaptiveTreeComposite |
TreeComposite |
Modifier and Type | Method and Description |
---|---|
static MOOSEModel.TreeType |
fromString(java.lang.String className)
This method performs a lookup to return a tree type based on an input
string, assumed to be equal to getClass().toString().
|
static MOOSEModel.TreeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MOOSEModel.TreeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MOOSEModel.TreeType AdaptiveTreeComposite
public static final MOOSEModel.TreeType TreeComposite
public static MOOSEModel.TreeType[] values()
for (MOOSEModel.TreeType c : MOOSEModel.TreeType.values()) System.out.println(c);
public static MOOSEModel.TreeType 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 nullpublic static MOOSEModel.TreeType fromString(java.lang.String className)
className
- The String returned by getClass().toString()