Enum ShipmentConfirmation.ShipmentStructureEnum
- java.lang.Object
-
- java.lang.Enum<ShipmentConfirmation.ShipmentStructureEnum>
-
- software.amazon.spapi.models.vendor.shipments.v1.ShipmentConfirmation.ShipmentStructureEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ShipmentConfirmation.ShipmentStructureEnum>
- Enclosing class:
- ShipmentConfirmation
public static enum ShipmentConfirmation.ShipmentStructureEnum extends java.lang.Enum<ShipmentConfirmation.ShipmentStructureEnum>
Shipment hierarchical structure.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ShipmentConfirmation.ShipmentStructureEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description LOOSEASSORTMENTCASE
LOOSESTANDARDCASE
MASTERCASE
MASTERPALLET
PALLETIZEDASSORTMENTCASE
PALLETIZEDSTANDARDCASE
PALLETOFITEMS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ShipmentConfirmation.ShipmentStructureEnum
fromValue(java.lang.String input)
java.lang.String
getValue()
java.lang.String
toString()
static ShipmentConfirmation.ShipmentStructureEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ShipmentConfirmation.ShipmentStructureEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PALLETIZEDASSORTMENTCASE
@SerializedName("PalletizedAssortmentCase") public static final ShipmentConfirmation.ShipmentStructureEnum PALLETIZEDASSORTMENTCASE
-
LOOSEASSORTMENTCASE
@SerializedName("LooseAssortmentCase") public static final ShipmentConfirmation.ShipmentStructureEnum LOOSEASSORTMENTCASE
-
PALLETOFITEMS
@SerializedName("PalletOfItems") public static final ShipmentConfirmation.ShipmentStructureEnum PALLETOFITEMS
-
PALLETIZEDSTANDARDCASE
@SerializedName("PalletizedStandardCase") public static final ShipmentConfirmation.ShipmentStructureEnum PALLETIZEDSTANDARDCASE
-
LOOSESTANDARDCASE
@SerializedName("LooseStandardCase") public static final ShipmentConfirmation.ShipmentStructureEnum LOOSESTANDARDCASE
-
MASTERPALLET
@SerializedName("MasterPallet") public static final ShipmentConfirmation.ShipmentStructureEnum MASTERPALLET
-
MASTERCASE
@SerializedName("MasterCase") public static final ShipmentConfirmation.ShipmentStructureEnum MASTERCASE
-
-
Method Detail
-
values
public static ShipmentConfirmation.ShipmentStructureEnum[] 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 (ShipmentConfirmation.ShipmentStructureEnum c : ShipmentConfirmation.ShipmentStructureEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShipmentConfirmation.ShipmentStructureEnum 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<ShipmentConfirmation.ShipmentStructureEnum>
-
fromValue
public static ShipmentConfirmation.ShipmentStructureEnum fromValue(java.lang.String input)
-
-