public static enum Customer.FraudFlag extends Enum<Customer.FraudFlag>
| Enum Constant and Description |
|---|
_UNKNOWN |
FRAUDULENT |
SAFE |
SUSPICIOUS |
| Modifier and Type | Method and Description |
|---|---|
static Customer.FraudFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Customer.FraudFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Customer.FraudFlag SAFE
public static final Customer.FraudFlag SUSPICIOUS
public static final Customer.FraudFlag FRAUDULENT
public static final Customer.FraudFlag _UNKNOWN
public static Customer.FraudFlag[] values()
for (Customer.FraudFlag c : Customer.FraudFlag.values()) System.out.println(c);
public static Customer.FraudFlag 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 © 2023 ChargeBee. All rights reserved.