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