Enum RateItemID
- java.lang.Object
-
- java.lang.Enum<RateItemID>
-
- software.amazon.spapi.models.shipping.v2.RateItemID
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RateItemID>
public enum RateItemID extends java.lang.Enum<RateItemID>
Unique ID for the rateItem.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RateItemID.Adapter
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RateItemID
fromValue(java.lang.String input)
java.lang.String
getValue()
java.lang.String
toString()
static RateItemID
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RateItemID[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASE_RATE
@SerializedName("BASE_RATE") public static final RateItemID BASE_RATE
-
TRANSACTION_FEE
@SerializedName("TRANSACTION_FEE") public static final RateItemID TRANSACTION_FEE
-
ADULT_SIGNATURE_CONFIRMATION
@SerializedName("ADULT_SIGNATURE_CONFIRMATION") public static final RateItemID ADULT_SIGNATURE_CONFIRMATION
-
SIGNATURE_CONFIRMATION
@SerializedName("SIGNATURE_CONFIRMATION") public static final RateItemID SIGNATURE_CONFIRMATION
-
NO_CONFIRMATION
@SerializedName("NO_CONFIRMATION") public static final RateItemID NO_CONFIRMATION
-
WAIVE_SIGNATURE
@SerializedName("WAIVE_SIGNATURE") public static final RateItemID WAIVE_SIGNATURE
-
IMPLIED_LIABILITY
@SerializedName("IMPLIED_LIABILITY") public static final RateItemID IMPLIED_LIABILITY
-
HIDDEN_POSTAGE
@SerializedName("HIDDEN_POSTAGE") public static final RateItemID HIDDEN_POSTAGE
-
DECLARED_VALUE
@SerializedName("DECLARED_VALUE") public static final RateItemID DECLARED_VALUE
-
SUNDAY_HOLIDAY_DELIVERY
@SerializedName("SUNDAY_HOLIDAY_DELIVERY") public static final RateItemID SUNDAY_HOLIDAY_DELIVERY
-
DELIVERY_CONFIRMATION
@SerializedName("DELIVERY_CONFIRMATION") public static final RateItemID DELIVERY_CONFIRMATION
-
IMPORT_DUTY_CHARGE
@SerializedName("IMPORT_DUTY_CHARGE") public static final RateItemID IMPORT_DUTY_CHARGE
-
VAT
@SerializedName("VAT") public static final RateItemID VAT
-
NO_SATURDAY_DELIVERY
@SerializedName("NO_SATURDAY_DELIVERY") public static final RateItemID NO_SATURDAY_DELIVERY
-
INSURANCE
@SerializedName("INSURANCE") public static final RateItemID INSURANCE
-
COD
@SerializedName("COD") public static final RateItemID COD
-
FUEL_SURCHARGE
@SerializedName("FUEL_SURCHARGE") public static final RateItemID FUEL_SURCHARGE
-
INSPECTION_CHARGE
@SerializedName("INSPECTION_CHARGE") public static final RateItemID INSPECTION_CHARGE
-
DELIVERY_AREA_SURCHARGE
@SerializedName("DELIVERY_AREA_SURCHARGE") public static final RateItemID DELIVERY_AREA_SURCHARGE
-
WAYBILL_CHARGE
@SerializedName("WAYBILL_CHARGE") public static final RateItemID WAYBILL_CHARGE
-
AMAZON_SPONSORED_DISCOUNT
@SerializedName("AMAZON_SPONSORED_DISCOUNT") public static final RateItemID AMAZON_SPONSORED_DISCOUNT
-
INTEGRATOR_SPONSORED_DISCOUNT
@SerializedName("INTEGRATOR_SPONSORED_DISCOUNT") public static final RateItemID INTEGRATOR_SPONSORED_DISCOUNT
-
OVERSIZE_SURCHARGE
@SerializedName("OVERSIZE_SURCHARGE") public static final RateItemID OVERSIZE_SURCHARGE
-
CONGESTION_CHARGE
@SerializedName("CONGESTION_CHARGE") public static final RateItemID CONGESTION_CHARGE
-
RESIDENTIAL_SURCHARGE
@SerializedName("RESIDENTIAL_SURCHARGE") public static final RateItemID RESIDENTIAL_SURCHARGE
-
ADDITIONAL_SURCHARGE
@SerializedName("ADDITIONAL_SURCHARGE") public static final RateItemID ADDITIONAL_SURCHARGE
-
SURCHARGE
@SerializedName("SURCHARGE") public static final RateItemID SURCHARGE
-
REBATE
@SerializedName("REBATE") public static final RateItemID REBATE
-
HIGH_CUBE_SURCHARGE
@SerializedName("HIGH_CUBE_SURCHARGE") public static final RateItemID HIGH_CUBE_SURCHARGE
-
HIGH_LENGTH_SURCHARGE
@SerializedName("HIGH_LENGTH_SURCHARGE") public static final RateItemID HIGH_LENGTH_SURCHARGE
-
HIGH_WIDTH_SURCHARGE
@SerializedName("HIGH_WIDTH_SURCHARGE") public static final RateItemID HIGH_WIDTH_SURCHARGE
-
DEMAND_SURCHARGE
@SerializedName("DEMAND_SURCHARGE") public static final RateItemID DEMAND_SURCHARGE
-
NONSTANDARD_FEE
@SerializedName("NONSTANDARD_FEE") public static final RateItemID NONSTANDARD_FEE
-
-
Method Detail
-
values
public static RateItemID[] 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 (RateItemID c : RateItemID.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RateItemID 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<RateItemID>
-
fromValue
public static RateItemID fromValue(java.lang.String input)
-
-