public enum ReturnShipmentState extends Enum<ReturnShipmentState> implements SphereEnumeration
SphereEnumeration
.Enum Constant and Description |
---|
ADVISED |
BACK_IN_STOCK |
RETURNED |
UNUSABLE |
Modifier and Type | Method and Description |
---|---|
static ReturnShipmentState |
ofSphereValue(String value) |
static ReturnShipmentState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReturnShipmentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
findBySphereName, name, toSphereName
public static final ReturnShipmentState ADVISED
public static final ReturnShipmentState RETURNED
public static final ReturnShipmentState BACK_IN_STOCK
public static final ReturnShipmentState UNUSABLE
public static ReturnShipmentState[] values()
for (ReturnShipmentState c : ReturnShipmentState.values()) System.out.println(c);
public static ReturnShipmentState 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 static ReturnShipmentState ofSphereValue(String value)