@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum ShippingLabelStatus extends Enum<ShippingLabelStatus>
Enum Constant and Description |
---|
Failed |
InProgress |
Succeeded |
TimedOut |
Modifier and Type | Method and Description |
---|---|
static ShippingLabelStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static ShippingLabelStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShippingLabelStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShippingLabelStatus InProgress
public static final ShippingLabelStatus TimedOut
public static final ShippingLabelStatus Succeeded
public static final ShippingLabelStatus Failed
public static ShippingLabelStatus[] values()
for (ShippingLabelStatus c : ShippingLabelStatus.values()) System.out.println(c);
public static ShippingLabelStatus 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 toString()
toString
in class Enum<ShippingLabelStatus>
public static ShippingLabelStatus fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.