public enum CalibrationType extends java.lang.Enum<CalibrationType>
Java class for CalibrationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CalibrationType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Offset"/>
<enumeration value="Gain"/>
<enumeration value="TP"/>
<enumeration value="Unspec"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
GAIN
Gain calibration
|
OFFSET
Offset calibration.
|
TP
Two point calibration.
|
UNSPEC
Unspecified calibration type.
|
| Modifier and Type | Method and Description |
|---|---|
static CalibrationType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static CalibrationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CalibrationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalibrationType OFFSET
public static final CalibrationType GAIN
public static final CalibrationType TP
public static final CalibrationType UNSPEC
public static CalibrationType[] values()
for (CalibrationType c : CalibrationType.values()) System.out.println(c);
public static CalibrationType 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 java.lang.String value()
public static CalibrationType fromValue(java.lang.String v)