public enum CalibrationType extends 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 |
|---|
CALIBRATION_REQUIRED
Gain calibration
|
NOT_CALIBRATED
Offset calibration.
|
TWO_POINT
Two point calibration.
|
UNSPECIFIED
Unspecified calibration type.
|
| Modifier and Type | Method and Description |
|---|---|
static CalibrationType |
fromValue(String v) |
String |
value() |
static CalibrationType |
valueOf(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 NOT_CALIBRATED
public static final CalibrationType CALIBRATION_REQUIRED
public static final CalibrationType TWO_POINT
public static final CalibrationType UNSPECIFIED
public static CalibrationType[] values()
for (CalibrationType c : CalibrationType.values()) System.out.println(c);
public static CalibrationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static CalibrationType fromValue(String v)
Copyright © 2018. All rights reserved.