Enum InboundStatus
- java.lang.Object
-
- java.lang.Enum<InboundStatus>
-
- software.amazon.spapi.models.awd.v2024_05_09.InboundStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InboundStatus>
public enum InboundStatus extends java.lang.Enum<InboundStatus>
The supported statuses for an inbound order.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InboundStatus.Adapter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InboundStatus
fromValue(java.lang.String input)
java.lang.String
getValue()
java.lang.String
toString()
static InboundStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InboundStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DRAFT
@SerializedName("DRAFT") public static final InboundStatus DRAFT
-
VALIDATING
@SerializedName("VALIDATING") public static final InboundStatus VALIDATING
-
CONFIRMED
@SerializedName("CONFIRMED") public static final InboundStatus CONFIRMED
-
CLOSED
@SerializedName("CLOSED") public static final InboundStatus CLOSED
-
EXPIRED
@SerializedName("EXPIRED") public static final InboundStatus EXPIRED
-
CANCELLED
@SerializedName("CANCELLED") public static final InboundStatus CANCELLED
-
-
Method Detail
-
values
public static InboundStatus[] 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 (InboundStatus c : InboundStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InboundStatus 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<InboundStatus>
-
fromValue
public static InboundStatus fromValue(java.lang.String input)
-
-