Enum EasyShipShipmentStatus
- java.lang.Object
-
- java.lang.Enum<EasyShipShipmentStatus>
-
- software.amazon.spapi.models.orders.v0.EasyShipShipmentStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EasyShipShipmentStatus>
public enum EasyShipShipmentStatus extends java.lang.Enum<EasyShipShipmentStatus>
The status of the Amazon Easy Ship order. This property is only included for Amazon Easy Ship orders.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EasyShipShipmentStatus.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description ATDESTINATIONFC
ATORIGINFC
DAMAGED
DELIVERED
DROPPEDOFF
LABELCANCELED
LOST
OUTFORDELIVERY
PENDINGDROPOFF
PENDINGPICKUP
PENDINGSCHEDULE
PICKEDUP
REJECTEDBYBUYER
RETURNEDTOSELLER
RETURNINGTOSELLER
UNDELIVERABLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EasyShipShipmentStatus
fromValue(java.lang.String input)
java.lang.String
getValue()
java.lang.String
toString()
static EasyShipShipmentStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EasyShipShipmentStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PENDINGSCHEDULE
@SerializedName("PendingSchedule") public static final EasyShipShipmentStatus PENDINGSCHEDULE
-
PENDINGPICKUP
@SerializedName("PendingPickUp") public static final EasyShipShipmentStatus PENDINGPICKUP
-
PENDINGDROPOFF
@SerializedName("PendingDropOff") public static final EasyShipShipmentStatus PENDINGDROPOFF
-
LABELCANCELED
@SerializedName("LabelCanceled") public static final EasyShipShipmentStatus LABELCANCELED
-
PICKEDUP
@SerializedName("PickedUp") public static final EasyShipShipmentStatus PICKEDUP
-
DROPPEDOFF
@SerializedName("DroppedOff") public static final EasyShipShipmentStatus DROPPEDOFF
-
ATORIGINFC
@SerializedName("AtOriginFC") public static final EasyShipShipmentStatus ATORIGINFC
-
ATDESTINATIONFC
@SerializedName("AtDestinationFC") public static final EasyShipShipmentStatus ATDESTINATIONFC
-
DELIVERED
@SerializedName("Delivered") public static final EasyShipShipmentStatus DELIVERED
-
REJECTEDBYBUYER
@SerializedName("RejectedByBuyer") public static final EasyShipShipmentStatus REJECTEDBYBUYER
-
UNDELIVERABLE
@SerializedName("Undeliverable") public static final EasyShipShipmentStatus UNDELIVERABLE
-
RETURNINGTOSELLER
@SerializedName("ReturningToSeller") public static final EasyShipShipmentStatus RETURNINGTOSELLER
-
RETURNEDTOSELLER
@SerializedName("ReturnedToSeller") public static final EasyShipShipmentStatus RETURNEDTOSELLER
-
LOST
@SerializedName("Lost") public static final EasyShipShipmentStatus LOST
-
OUTFORDELIVERY
@SerializedName("OutForDelivery") public static final EasyShipShipmentStatus OUTFORDELIVERY
-
DAMAGED
@SerializedName("Damaged") public static final EasyShipShipmentStatus DAMAGED
-
-
Method Detail
-
values
public static EasyShipShipmentStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EasyShipShipmentStatus c : EasyShipShipmentStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EasyShipShipmentStatus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<EasyShipShipmentStatus>
-
fromValue
public static EasyShipShipmentStatus fromValue(java.lang.String input)
-
-