Enum Class RankingAlgorithm
- All Implemented Interfaces:
Serializable
,Comparable<RankingAlgorithm>
,Constable
Algorithms available for ranking HTTP request/response pairs.
These algorithms analyze request/response data to assign ranking scores.
Note that the rank values are relative to other members in the collection.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAnomaly-based ranking algorithm that identifies unusual HTTP responses within a given dataset. -
Method Summary
Modifier and TypeMethodDescriptionstatic RankingAlgorithm
Returns the enum constant of this class with the specified name.static RankingAlgorithm[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANOMALY
Anomaly-based ranking algorithm that identifies unusual HTTP responses within a given dataset. The higher the rank value, the more distinct the response is within the dataset.
-
-
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
-