public enum LineItemSummaryReservationStatus extends Enum<LineItemSummaryReservationStatus>
Java class for LineItemSummary.ReservationStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LineItemSummary.ReservationStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="RESERVED"/>
<enumeration value="UNRESERVED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
RESERVED
Indicates that inventory has been reserved for the line item.
|
UNRESERVED
Indicates that inventory has not been reserved for the line item.
|
| Modifier and Type | Method and Description |
|---|---|
static LineItemSummaryReservationStatus |
fromValue(String v) |
String |
value() |
static LineItemSummaryReservationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineItemSummaryReservationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineItemSummaryReservationStatus RESERVED
public static final LineItemSummaryReservationStatus UNRESERVED
public static LineItemSummaryReservationStatus[] values()
for (LineItemSummaryReservationStatus c : LineItemSummaryReservationStatus.values()) System.out.println(c);
public static LineItemSummaryReservationStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static LineItemSummaryReservationStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.