public enum PickingOptionsType extends Enum<PickingOptionsType>
Java class for PickingOptionsType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PickingOptionsType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="none"/>
<enumeration value="local"/>
<enumeration value="remote"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static PickingOptionsType |
fromValue(String v) |
String |
value() |
static PickingOptionsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PickingOptionsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PickingOptionsType NONE
public static final PickingOptionsType LOCAL
public static final PickingOptionsType REMOTE
public static PickingOptionsType[] values()
for (PickingOptionsType c : PickingOptionsType.values()) System.out.println(c);
public static PickingOptionsType 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 PickingOptionsType fromValue(String v)