Enum Class RankingAlgorithm

java.lang.Object
java.lang.Enum<RankingAlgorithm>
burp.api.montoya.utilities.rank.RankingAlgorithm
All Implemented Interfaces:
Serializable, Comparable<RankingAlgorithm>, Constable

public enum RankingAlgorithm extends Enum<RankingAlgorithm>
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.

  • Enum Constant Details

    • ANOMALY

      public static final RankingAlgorithm 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

      public static RankingAlgorithm[] 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

      public static RankingAlgorithm valueOf(String name)
      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 name
      NullPointerException - if the argument is null