public enum SpectralRangeValueEnumerationType extends Enum<SpectralRangeValueEnumerationType>
Java class for SpectralRangeValueEnumerationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SpectralRangeValueEnumerationType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="OTHER"/>
<enumeration value="VISIBLE"/>
<enumeration value="UV"/>
<enumeration value="INFRARED"/>
<enumeration value="NEAR-INFRARED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INFRARED
Infrared range
|
NEAR_INFRARED
Near infrared Range
|
OTHER
Other spectral range
|
UV
Ultra Violet Range
|
VISIBLE
Visible Range
|
| Modifier and Type | Method and Description |
|---|---|
static SpectralRangeValueEnumerationType |
fromValue(String v) |
String |
value() |
static SpectralRangeValueEnumerationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpectralRangeValueEnumerationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpectralRangeValueEnumerationType OTHER
public static final SpectralRangeValueEnumerationType VISIBLE
public static final SpectralRangeValueEnumerationType UV
public static final SpectralRangeValueEnumerationType INFRARED
public static final SpectralRangeValueEnumerationType NEAR_INFRARED
public static SpectralRangeValueEnumerationType[] values()
for (SpectralRangeValueEnumerationType c : SpectralRangeValueEnumerationType.values()) System.out.println(c);
public static SpectralRangeValueEnumerationType 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 SpectralRangeValueEnumerationType fromValue(String v)
Copyright © 2008–2023. All rights reserved.