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