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