public enum AcquisitionTypeValueType extends Enum<AcquisitionTypeValueType>
Java class for AcquisitionTypeValueType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AcquisitionTypeValueType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="OTHER"/>
<enumeration value="CALIBRATION"/>
<enumeration value="NOMINAL"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CALIBRATION
Indicates the acquisition is a calibration product
|
NOMINAL
Indicates the acquisition is a nominal acquisition
|
OTHER
Indicates some other type of acquisition
|
| Modifier and Type | Method and Description |
|---|---|
static AcquisitionTypeValueType |
fromValue(String v) |
String |
value() |
static AcquisitionTypeValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AcquisitionTypeValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AcquisitionTypeValueType OTHER
public static final AcquisitionTypeValueType CALIBRATION
public static final AcquisitionTypeValueType NOMINAL
public static AcquisitionTypeValueType[] values()
for (AcquisitionTypeValueType c : AcquisitionTypeValueType.values()) System.out.println(c);
public static AcquisitionTypeValueType 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 AcquisitionTypeValueType fromValue(String v)
Copyright © 2008–2023. All rights reserved.