public static enum Refusal.EnumReason extends Enum<Refusal.EnumReason>
Enum Constant and Description |
---|
Busy |
InvalidPrice |
Milestone |
Other |
WrongProduct |
Modifier and Type | Method and Description |
---|---|
static Refusal.EnumReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Refusal.EnumReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Refusal.EnumReason Busy
public static final Refusal.EnumReason InvalidPrice
public static final Refusal.EnumReason Milestone
public static final Refusal.EnumReason Other
public static final Refusal.EnumReason WrongProduct
public static Refusal.EnumReason[] values()
for (Refusal.EnumReason c : Refusal.EnumReason.values()) System.out.println(c);
public static Refusal.EnumReason 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 © 2019. All rights reserved.