Enum EventCode
- java.lang.Object
-
- java.lang.Enum<EventCode>
-
- software.amazon.spapi.models.fulfillment.outbound.v2020_07_01.EventCode
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EventCode.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventCode
fromValue(java.lang.String input)
java.lang.String
getValue()
java.lang.String
toString()
static EventCode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EventCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_101
@SerializedName("EVENT_101") public static final EventCode _101
-
_102
@SerializedName("EVENT_102") public static final EventCode _102
-
_201
@SerializedName("EVENT_201") public static final EventCode _201
-
_202
@SerializedName("EVENT_202") public static final EventCode _202
-
_203
@SerializedName("EVENT_203") public static final EventCode _203
-
_204
@SerializedName("EVENT_204") public static final EventCode _204
-
_205
@SerializedName("EVENT_205") public static final EventCode _205
-
_206
@SerializedName("EVENT_206") public static final EventCode _206
-
_301
@SerializedName("EVENT_301") public static final EventCode _301
-
_302
@SerializedName("EVENT_302") public static final EventCode _302
-
_304
@SerializedName("EVENT_304") public static final EventCode _304
-
_306
@SerializedName("EVENT_306") public static final EventCode _306
-
_307
@SerializedName("EVENT_307") public static final EventCode _307
-
_308
@SerializedName("EVENT_308") public static final EventCode _308
-
_309
@SerializedName("EVENT_309") public static final EventCode _309
-
_401
@SerializedName("EVENT_401") public static final EventCode _401
-
_402
@SerializedName("EVENT_402") public static final EventCode _402
-
_403
@SerializedName("EVENT_403") public static final EventCode _403
-
_404
@SerializedName("EVENT_404") public static final EventCode _404
-
_405
@SerializedName("EVENT_405") public static final EventCode _405
-
_406
@SerializedName("EVENT_406") public static final EventCode _406
-
_407
@SerializedName("EVENT_407") public static final EventCode _407
-
_408
@SerializedName("EVENT_408") public static final EventCode _408
-
_409
@SerializedName("EVENT_409") public static final EventCode _409
-
_411
@SerializedName("EVENT_411") public static final EventCode _411
-
_412
@SerializedName("EVENT_412") public static final EventCode _412
-
_413
@SerializedName("EVENT_413") public static final EventCode _413
-
_414
@SerializedName("EVENT_414") public static final EventCode _414
-
_415
@SerializedName("EVENT_415") public static final EventCode _415
-
_416
@SerializedName("EVENT_416") public static final EventCode _416
-
_417
@SerializedName("EVENT_417") public static final EventCode _417
-
_418
@SerializedName("EVENT_418") public static final EventCode _418
-
_419
@SerializedName("EVENT_419") public static final EventCode _419
-
-
Method Detail
-
values
public static EventCode[] 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 (EventCode c : EventCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventCode 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<EventCode>
-
fromValue
public static EventCode fromValue(java.lang.String input)
-
-