public enum Specification extends java.lang.Enum<Specification>
| Enum Constant and Description | 
|---|
| EXTERNALExternal specification. | 
| SENSOREDSensored specification. | 
| STANDARDStandard specification. | 
| TOUGHTough specification. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Specification | fromString(java.lang.String specificationString) | 
| static Specification | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Specification[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Specification STANDARD
public static final Specification SENSORED
public static final Specification TOUGH
public static final Specification EXTERNAL
public static Specification[] values()
for (Specification c : Specification.values()) System.out.println(c);
public static Specification 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 Specification fromString(java.lang.String specificationString)