public enum TrackingType extends Enum<TrackingType>
Java class for trackingType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="trackingType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NO_TRACK"/>
<enumeration value="TIGHT_NOTIFICATION"/>
<enumeration value="TIGHT_FULL_TRACK"/>
<enumeration value="LOOSE_NOTIFICATION"/>
<enumeration value="LOOSE_FULL_TRACK"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
LOOSE_FULL_TRACK |
LOOSE_NOTIFICATION |
NO_TRACK |
TIGHT_FULL_TRACK |
TIGHT_NOTIFICATION |
| Modifier and Type | Method and Description |
|---|---|
static TrackingType |
fromValue(String v) |
String |
value() |
static TrackingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackingType NO_TRACK
public static final TrackingType TIGHT_NOTIFICATION
public static final TrackingType TIGHT_FULL_TRACK
public static final TrackingType LOOSE_NOTIFICATION
public static final TrackingType LOOSE_FULL_TRACK
public static TrackingType[] values()
for (TrackingType c : TrackingType.values()) System.out.println(c);
public static TrackingType 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 TrackingType fromValue(String v)
Copyright © 2009,2013 Oracle and/or its affiliates. All rights reserved.