Enum RiskAnalysis.ClassificationReason
- java.lang.Object
-
- java.lang.Enum<RiskAnalysis.ClassificationReason>
-
- com.google.recaptchaenterprise.v1.RiskAnalysis.ClassificationReason
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<RiskAnalysis.ClassificationReason>
- Enclosing class:
- RiskAnalysis
public static enum RiskAnalysis.ClassificationReason extends Enum<RiskAnalysis.ClassificationReason> implements com.google.protobuf.ProtocolMessageEnum
Reasons contributing to the risk analysis verdict.
Protobuf enumgoogle.cloud.recaptchaenterprise.v1.RiskAnalysis.ClassificationReason
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOMATIONInteractions matched the behavior of an automated agent.CLASSIFICATION_REASON_UNSPECIFIEDDefault unspecified type.LOW_CONFIDENCE_SCOREToo little traffic has been received from this site thus far to generate quality risk analysis.SUSPECTED_CARDINGThe request matches behavioral characteristics of a carding attack.SUSPECTED_CHARGEBACKThe request matches behavioral characteristics of chargebacks for fraud.TOO_MUCH_TRAFFICTraffic volume from the event source is higher than normal.UNEXPECTED_ENVIRONMENTThe event originated from an illegitimate environment.UNEXPECTED_USAGE_PATTERNSInteractions with the site were significantly different than expected patterns.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intAUTOMATION_VALUEInteractions matched the behavior of an automated agent.static intCLASSIFICATION_REASON_UNSPECIFIED_VALUEDefault unspecified type.static intLOW_CONFIDENCE_SCORE_VALUEToo little traffic has been received from this site thus far to generate quality risk analysis.static intSUSPECTED_CARDING_VALUEThe request matches behavioral characteristics of a carding attack.static intSUSPECTED_CHARGEBACK_VALUEThe request matches behavioral characteristics of chargebacks for fraud.static intTOO_MUCH_TRAFFIC_VALUETraffic volume from the event source is higher than normal.static intUNEXPECTED_ENVIRONMENT_VALUEThe event originated from an illegitimate environment.static intUNEXPECTED_USAGE_PATTERNS_VALUEInteractions with the site were significantly different than expected patterns.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static RiskAnalysis.ClassificationReasonforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<RiskAnalysis.ClassificationReason>internalGetValueMap()static RiskAnalysis.ClassificationReasonvalueOf(int value)Deprecated.static RiskAnalysis.ClassificationReasonvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static RiskAnalysis.ClassificationReasonvalueOf(String name)Returns the enum constant of this type with the specified name.static RiskAnalysis.ClassificationReason[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLASSIFICATION_REASON_UNSPECIFIED
public static final RiskAnalysis.ClassificationReason CLASSIFICATION_REASON_UNSPECIFIED
Default unspecified type.
CLASSIFICATION_REASON_UNSPECIFIED = 0;
-
AUTOMATION
public static final RiskAnalysis.ClassificationReason AUTOMATION
Interactions matched the behavior of an automated agent.
AUTOMATION = 1;
-
UNEXPECTED_ENVIRONMENT
public static final RiskAnalysis.ClassificationReason UNEXPECTED_ENVIRONMENT
The event originated from an illegitimate environment.
UNEXPECTED_ENVIRONMENT = 2;
-
TOO_MUCH_TRAFFIC
public static final RiskAnalysis.ClassificationReason TOO_MUCH_TRAFFIC
Traffic volume from the event source is higher than normal.
TOO_MUCH_TRAFFIC = 3;
-
UNEXPECTED_USAGE_PATTERNS
public static final RiskAnalysis.ClassificationReason UNEXPECTED_USAGE_PATTERNS
Interactions with the site were significantly different than expected patterns.
UNEXPECTED_USAGE_PATTERNS = 4;
-
LOW_CONFIDENCE_SCORE
public static final RiskAnalysis.ClassificationReason LOW_CONFIDENCE_SCORE
Too little traffic has been received from this site thus far to generate quality risk analysis.
LOW_CONFIDENCE_SCORE = 5;
-
SUSPECTED_CARDING
public static final RiskAnalysis.ClassificationReason SUSPECTED_CARDING
The request matches behavioral characteristics of a carding attack.
SUSPECTED_CARDING = 6;
-
SUSPECTED_CHARGEBACK
public static final RiskAnalysis.ClassificationReason SUSPECTED_CHARGEBACK
The request matches behavioral characteristics of chargebacks for fraud.
SUSPECTED_CHARGEBACK = 7;
-
UNRECOGNIZED
public static final RiskAnalysis.ClassificationReason UNRECOGNIZED
-
-
Field Detail
-
CLASSIFICATION_REASON_UNSPECIFIED_VALUE
public static final int CLASSIFICATION_REASON_UNSPECIFIED_VALUE
Default unspecified type.
CLASSIFICATION_REASON_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
AUTOMATION_VALUE
public static final int AUTOMATION_VALUE
Interactions matched the behavior of an automated agent.
AUTOMATION = 1;- See Also:
- Constant Field Values
-
UNEXPECTED_ENVIRONMENT_VALUE
public static final int UNEXPECTED_ENVIRONMENT_VALUE
The event originated from an illegitimate environment.
UNEXPECTED_ENVIRONMENT = 2;- See Also:
- Constant Field Values
-
TOO_MUCH_TRAFFIC_VALUE
public static final int TOO_MUCH_TRAFFIC_VALUE
Traffic volume from the event source is higher than normal.
TOO_MUCH_TRAFFIC = 3;- See Also:
- Constant Field Values
-
UNEXPECTED_USAGE_PATTERNS_VALUE
public static final int UNEXPECTED_USAGE_PATTERNS_VALUE
Interactions with the site were significantly different than expected patterns.
UNEXPECTED_USAGE_PATTERNS = 4;- See Also:
- Constant Field Values
-
LOW_CONFIDENCE_SCORE_VALUE
public static final int LOW_CONFIDENCE_SCORE_VALUE
Too little traffic has been received from this site thus far to generate quality risk analysis.
LOW_CONFIDENCE_SCORE = 5;- See Also:
- Constant Field Values
-
SUSPECTED_CARDING_VALUE
public static final int SUSPECTED_CARDING_VALUE
The request matches behavioral characteristics of a carding attack.
SUSPECTED_CARDING = 6;- See Also:
- Constant Field Values
-
SUSPECTED_CHARGEBACK_VALUE
public static final int SUSPECTED_CHARGEBACK_VALUE
The request matches behavioral characteristics of chargebacks for fraud.
SUSPECTED_CHARGEBACK = 7;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static RiskAnalysis.ClassificationReason[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RiskAnalysis.ClassificationReason c : RiskAnalysis.ClassificationReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RiskAnalysis.ClassificationReason valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static RiskAnalysis.ClassificationReason valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
forNumber
public static RiskAnalysis.ClassificationReason forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<RiskAnalysis.ClassificationReason> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static RiskAnalysis.ClassificationReason valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
desc- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-