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