public static enum PriceItemData.Status extends Enum<PriceItemData.Status>
Modifier and Type | Method and Description |
---|---|
static PriceItemData.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PriceItemData.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PriceItemData.Status CREATE
public static final PriceItemData.Status DELETED
public static final PriceItemData.Status OLD
public static final PriceItemData.Status UPDATED
public static PriceItemData.Status 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 PriceItemData.Status[] values()
for (PriceItemData.Status c : PriceItemData.Status.values()) System.out.println(c);