public enum OptionStateEnum extends Enum<OptionStateEnum>
| Enum Constant and Description |
|---|
PRE_REQUESTED |
PRE_SALES |
REJECTED |
REQUESTED |
VALIDATED |
| Modifier and Type | Method and Description |
|---|---|
static OptionStateEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionStateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionStateEnum PRE_SALES
public static final OptionStateEnum PRE_REQUESTED
public static final OptionStateEnum REQUESTED
public static final OptionStateEnum VALIDATED
public static final OptionStateEnum REJECTED
public static OptionStateEnum[] values()
for (OptionStateEnum c : OptionStateEnum.values()) System.out.println(c);
public static OptionStateEnum 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 nullCopyright © 2020. All rights reserved.