Enum Class BehaviorAnalyzer.AnalysisResult
java.lang.Object
java.lang.Enum<BehaviorAnalyzer.AnalysisResult>
cloud.opencode.base.captcha.security.BehaviorAnalyzer.AnalysisResult
- All Implemented Interfaces:
Serializable, Comparable<BehaviorAnalyzer.AnalysisResult>, Constable
- Enclosing class:
BehaviorAnalyzer
Analysis result enumeration.
分析结果枚举。
- Since:
- JDK 25, opencode-base-captcha V1.0.0
- Author:
- Leon Soo www.LeonSoo.com
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionConsistent timing suggests automation | 一致的时间表明自动化Normal behavior | 正常行为Suspiciously fast response | 可疑的快速响应Too many failures | 失败次数过多 -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static BehaviorAnalyzer.AnalysisResult[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NORMAL
Normal behavior | 正常行为 -
SUSPICIOUS_TIMING
Suspiciously fast response | 可疑的快速响应 -
TOO_MANY_FAILURES
Too many failures | 失败次数过多 -
CONSISTENT_TIMING
Consistent timing suggests automation | 一致的时间表明自动化
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-