Enum DangerousGoodsDetails.PackingInstructionEnum
- java.lang.Object
-
- java.lang.Enum<DangerousGoodsDetails.PackingInstructionEnum>
-
- software.amazon.spapi.models.shipping.v2.DangerousGoodsDetails.PackingInstructionEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DangerousGoodsDetails.PackingInstructionEnum>
- Enclosing class:
- DangerousGoodsDetails
public static enum DangerousGoodsDetails.PackingInstructionEnum extends java.lang.Enum<DangerousGoodsDetails.PackingInstructionEnum>
The specific packing instruction of the item being shipped.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DangerousGoodsDetails.PackingInstructionEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description PI965_SECTION_IA
PI965_SECTION_IB
PI965_SECTION_II
PI966_SECTION_I
PI966_SECTION_II
PI967_SECTION_I
PI967_SECTION_II
PI968_SECTION_IA
PI968_SECTION_IB
PI969_SECTION_I
PI969_SECTION_II
PI970_SECTION_I
PI970_SECTION_II
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DangerousGoodsDetails.PackingInstructionEnum
fromValue(java.lang.String input)
java.lang.String
getValue()
java.lang.String
toString()
static DangerousGoodsDetails.PackingInstructionEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DangerousGoodsDetails.PackingInstructionEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PI965_SECTION_IA
@SerializedName("PI965_SECTION_IA") public static final DangerousGoodsDetails.PackingInstructionEnum PI965_SECTION_IA
-
PI965_SECTION_IB
@SerializedName("PI965_SECTION_IB") public static final DangerousGoodsDetails.PackingInstructionEnum PI965_SECTION_IB
-
PI965_SECTION_II
@SerializedName("PI965_SECTION_II") public static final DangerousGoodsDetails.PackingInstructionEnum PI965_SECTION_II
-
PI966_SECTION_I
@SerializedName("PI966_SECTION_I") public static final DangerousGoodsDetails.PackingInstructionEnum PI966_SECTION_I
-
PI966_SECTION_II
@SerializedName("PI966_SECTION_II") public static final DangerousGoodsDetails.PackingInstructionEnum PI966_SECTION_II
-
PI967_SECTION_I
@SerializedName("PI967_SECTION_I") public static final DangerousGoodsDetails.PackingInstructionEnum PI967_SECTION_I
-
PI967_SECTION_II
@SerializedName("PI967_SECTION_II") public static final DangerousGoodsDetails.PackingInstructionEnum PI967_SECTION_II
-
PI968_SECTION_IA
@SerializedName("PI968_SECTION_IA") public static final DangerousGoodsDetails.PackingInstructionEnum PI968_SECTION_IA
-
PI968_SECTION_IB
@SerializedName("PI968_SECTION_IB") public static final DangerousGoodsDetails.PackingInstructionEnum PI968_SECTION_IB
-
PI969_SECTION_I
@SerializedName("PI969_SECTION_I") public static final DangerousGoodsDetails.PackingInstructionEnum PI969_SECTION_I
-
PI969_SECTION_II
@SerializedName("PI969_SECTION_II") public static final DangerousGoodsDetails.PackingInstructionEnum PI969_SECTION_II
-
PI970_SECTION_I
@SerializedName("PI970_SECTION_I") public static final DangerousGoodsDetails.PackingInstructionEnum PI970_SECTION_I
-
PI970_SECTION_II
@SerializedName("PI970_SECTION_II") public static final DangerousGoodsDetails.PackingInstructionEnum PI970_SECTION_II
-
-
Method Detail
-
values
public static DangerousGoodsDetails.PackingInstructionEnum[] 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 (DangerousGoodsDetails.PackingInstructionEnum c : DangerousGoodsDetails.PackingInstructionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DangerousGoodsDetails.PackingInstructionEnum 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<DangerousGoodsDetails.PackingInstructionEnum>
-
fromValue
public static DangerousGoodsDetails.PackingInstructionEnum fromValue(java.lang.String input)
-
-