public static enum Cart.CartState extends java.lang.Enum<Cart.CartState>
Cart
.Modifier and Type | Method and Description |
---|---|
static Cart.CartState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Cart.CartState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cart.CartState Active
public static final Cart.CartState Merged
public static Cart.CartState[] values()
for (Cart.CartState c : Cart.CartState.values()) System.out.println(c);
public static Cart.CartState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null