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