Enum OptionalFulfillmentProgram
- java.lang.Object
-
- java.lang.Enum<OptionalFulfillmentProgram>
-
- software.amazon.spapi.models.productfees.v0.OptionalFulfillmentProgram
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OptionalFulfillmentProgram>
public enum OptionalFulfillmentProgram extends java.lang.Enum<OptionalFulfillmentProgram>
An optional enrollment program to return the estimated fees when the offer is fulfilled by Amazon (IsAmazonFulfilled is set to true).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
OptionalFulfillmentProgram.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OptionalFulfillmentProgram
fromValue(java.lang.String input)
java.lang.String
getValue()
java.lang.String
toString()
static OptionalFulfillmentProgram
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OptionalFulfillmentProgram[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CORE
@SerializedName("FBA_CORE") public static final OptionalFulfillmentProgram CORE
-
SNL
@SerializedName("FBA_SNL") public static final OptionalFulfillmentProgram SNL
-
EFN
@SerializedName("FBA_EFN") public static final OptionalFulfillmentProgram EFN
-
-
Method Detail
-
values
public static OptionalFulfillmentProgram[] 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 (OptionalFulfillmentProgram c : OptionalFulfillmentProgram.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OptionalFulfillmentProgram 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<OptionalFulfillmentProgram>
-
fromValue
public static OptionalFulfillmentProgram fromValue(java.lang.String input)
-
-