public enum LithologySource extends Enum<LithologySource>
Java class for LithologySource.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LithologySource">
<restriction base="{http://www.witsml.org/schemas/131}abstractTypeEnum">
<enumeration value="interpreted"/>
<enumeration value="core"/>
<enumeration value="cuttings"/>
<enumeration value="unknown"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CORE
The lithology as based on a visual inspection of the core.
|
CUTTINGS
The lithology as based on a visual inspection of the cuttings.
|
INTERPRETED
The lithology has one overall interpretation based on
several sources such as logs and cuttings or cores.
|
UNKNOWN
The value is not known.
|
| Modifier and Type | Method and Description |
|---|---|
static LithologySource |
fromValue(String v) |
String |
value() |
static LithologySource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LithologySource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LithologySource INTERPRETED
public static final LithologySource CORE
public static final LithologySource CUTTINGS
public static final LithologySource UNKNOWN
public static LithologySource[] values()
for (LithologySource c : LithologySource.values()) System.out.println(c);
public static LithologySource 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 LithologySource fromValue(String v)
Copyright © 2017. All rights reserved.