public enum ModelConstruction extends java.lang.Enum<ModelConstruction>
Enum Constant and Description |
---|
FULL
The full.
|
HIGHEST_CRITICITY
The highest criticity.
|
HIGHEST_SENSIBILITY
The highest sensibility.
|
Modifier and Type | Method and Description |
---|---|
static ModelConstruction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModelConstruction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelConstruction FULL
public static final ModelConstruction HIGHEST_SENSIBILITY
public static final ModelConstruction HIGHEST_CRITICITY
public static ModelConstruction[] values()
for (ModelConstruction c : ModelConstruction.values()) System.out.println(c);
public static ModelConstruction 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