public static enum Track.TrackingStatus extends Enum<Track.TrackingStatus>
| Enum Constant and Description |
|---|
DELIVERED |
FAILURE |
RETURNED |
TRANSIT |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static Track.TrackingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Track.TrackingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Track.TrackingStatus UNKNOWN
public static final Track.TrackingStatus DELIVERED
public static final Track.TrackingStatus TRANSIT
public static final Track.TrackingStatus FAILURE
public static final Track.TrackingStatus RETURNED
public static Track.TrackingStatus[] values()
for (Track.TrackingStatus c : Track.TrackingStatus.values()) System.out.println(c);
public static Track.TrackingStatus 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 nullCopyright © 2017 Shippo. All rights reserved.