Enum TestingOptions.TestingChallenge
- java.lang.Object
-
- java.lang.Enum<TestingOptions.TestingChallenge>
-
- com.google.recaptchaenterprise.v1.TestingOptions.TestingChallenge
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<TestingOptions.TestingChallenge>
- Enclosing class:
- TestingOptions
public static enum TestingOptions.TestingChallenge extends Enum<TestingOptions.TestingChallenge> implements com.google.protobuf.ProtocolMessageEnum
Enum that represents the challenge option for challenge-based (CHECKBOX, INVISIBLE) testing keys.
Protobuf enumgoogle.cloud.recaptchaenterprise.v1.TestingOptions.TestingChallenge
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOCAPTCHAChallenge requests for this key always return a nocaptcha, which does not require a solution.TESTING_CHALLENGE_UNSPECIFIEDPerform the normal risk analysis and return either nocaptcha or a challenge depending on risk and trust factors.UNRECOGNIZEDUNSOLVABLE_CHALLENGEChallenge requests for this key always return an unsolvable challenge.
-
Field Summary
Fields Modifier and Type Field Description static intNOCAPTCHA_VALUEChallenge requests for this key always return a nocaptcha, which does not require a solution.static intTESTING_CHALLENGE_UNSPECIFIED_VALUEPerform the normal risk analysis and return either nocaptcha or a challenge depending on risk and trust factors.static intUNSOLVABLE_CHALLENGE_VALUEChallenge requests for this key always return an unsolvable challenge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static TestingOptions.TestingChallengeforNumber(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<TestingOptions.TestingChallenge>internalGetValueMap()static TestingOptions.TestingChallengevalueOf(int value)Deprecated.static TestingOptions.TestingChallengevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static TestingOptions.TestingChallengevalueOf(String name)Returns the enum constant of this type with the specified name.static TestingOptions.TestingChallenge[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TESTING_CHALLENGE_UNSPECIFIED
public static final TestingOptions.TestingChallenge TESTING_CHALLENGE_UNSPECIFIED
Perform the normal risk analysis and return either nocaptcha or a challenge depending on risk and trust factors.
TESTING_CHALLENGE_UNSPECIFIED = 0;
-
NOCAPTCHA
public static final TestingOptions.TestingChallenge NOCAPTCHA
Challenge requests for this key always return a nocaptcha, which does not require a solution.
NOCAPTCHA = 1;
-
UNSOLVABLE_CHALLENGE
public static final TestingOptions.TestingChallenge UNSOLVABLE_CHALLENGE
Challenge requests for this key always return an unsolvable challenge.
UNSOLVABLE_CHALLENGE = 2;
-
UNRECOGNIZED
public static final TestingOptions.TestingChallenge UNRECOGNIZED
-
-
Field Detail
-
TESTING_CHALLENGE_UNSPECIFIED_VALUE
public static final int TESTING_CHALLENGE_UNSPECIFIED_VALUE
Perform the normal risk analysis and return either nocaptcha or a challenge depending on risk and trust factors.
TESTING_CHALLENGE_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
NOCAPTCHA_VALUE
public static final int NOCAPTCHA_VALUE
Challenge requests for this key always return a nocaptcha, which does not require a solution.
NOCAPTCHA = 1;- See Also:
- Constant Field Values
-
UNSOLVABLE_CHALLENGE_VALUE
public static final int UNSOLVABLE_CHALLENGE_VALUE
Challenge requests for this key always return an unsolvable challenge.
UNSOLVABLE_CHALLENGE = 2;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static TestingOptions.TestingChallenge[] 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 (TestingOptions.TestingChallenge c : TestingOptions.TestingChallenge.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestingOptions.TestingChallenge 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 TestingOptions.TestingChallenge 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 TestingOptions.TestingChallenge 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<TestingOptions.TestingChallenge> 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 TestingOptions.TestingChallenge 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
-
-