public enum BlacklistRuleType extends java.lang.Enum<BlacklistRuleType>
| Enum Constant and Description |
|---|
ACCEPT_LANGUAGE |
CARD_BIN |
CARD_COUNTRY |
CARD_ISSUER |
EMAIL |
FINGERPRINT |
IP_ADDRESS |
IP_COUNTRY |
METADATA |
UNRECOGNIZED
Used when received value can't be mapped to this enumeration.
|
USER_AGENT |
| Modifier and Type | Method and Description |
|---|---|
static BlacklistRuleType |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
static BlacklistRuleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlacklistRuleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlacklistRuleType FINGERPRINT
public static final BlacklistRuleType IP_ADDRESS
public static final BlacklistRuleType IP_COUNTRY
public static final BlacklistRuleType METADATA
public static final BlacklistRuleType EMAIL
public static final BlacklistRuleType USER_AGENT
public static final BlacklistRuleType ACCEPT_LANGUAGE
public static final BlacklistRuleType CARD_COUNTRY
public static final BlacklistRuleType CARD_BIN
public static final BlacklistRuleType CARD_ISSUER
public static final BlacklistRuleType UNRECOGNIZED
public static BlacklistRuleType[] values()
for (BlacklistRuleType c : BlacklistRuleType.values()) System.out.println(c);
public static BlacklistRuleType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static BlacklistRuleType fromValue(java.lang.String value)
public java.lang.String getValue()