Package com.onslip360
Enum API.Order.State
- java.lang.Object
-
- java.lang.Enum<API.Order.State>
-
- com.onslip360.API.Order.State
-
- All Implemented Interfaces:
Serializable
,Comparable<API.Order.State>
- Enclosing class:
- API.Order
public static enum API.Order.State extends Enum<API.Order.State>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.Order.State
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.Order.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REQUESTED
public static final API.Order.State REQUESTED
-
BOOKED
public static final API.Order.State BOOKED
-
ACTIVE
public static final API.Order.State ACTIVE
-
SHIPPED
public static final API.Order.State SHIPPED
-
FULFILLED
public static final API.Order.State FULFILLED
-
CANCELLED
public static final API.Order.State CANCELLED
-
__
public static final API.Order.State __
-
-
Method Detail
-
values
public static API.Order.State[] 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 (API.Order.State c : API.Order.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static API.Order.State valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-