public enum ShowFluorescence extends Enum<ShowFluorescence>
Java class for ShowFluorescence.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ShowFluorescence">
<restriction base="{http://www.witsml.org/schemas/131}abstractTypeEnum">
<enumeration value="faint"/>
<enumeration value="bright"/>
<enumeration value="none"/>
<enumeration value="unknown"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BRIGHT |
FAINT |
NONE |
UNKNOWN
The value is not known.
|
| Modifier and Type | Method and Description |
|---|---|
static ShowFluorescence |
fromValue(String v) |
String |
value() |
static ShowFluorescence |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShowFluorescence[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShowFluorescence FAINT
public static final ShowFluorescence BRIGHT
public static final ShowFluorescence NONE
public static final ShowFluorescence UNKNOWN
public static ShowFluorescence[] values()
for (ShowFluorescence c : ShowFluorescence.values()) System.out.println(c);
public static ShowFluorescence 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 ShowFluorescence fromValue(String v)
Copyright © 2017. All rights reserved.