Enum Class URLEncoding

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

public enum URLEncoding extends Enum<URLEncoding>
  • Enum Constant Details

    • JAVA_DEFAULT

      public static final URLEncoding JAVA_DEFAULT
      Encode using URLEncoder.
    • KEY_CHARACTERS

      public static final URLEncoding KEY_CHARACTERS
      Encode key characters only.
    • ALL_CHARACTERS

      public static final URLEncoding ALL_CHARACTERS
      Encode all characters.
    • ALL_CHARACTERS_UNICODE

      public static final URLEncoding ALL_CHARACTERS_UNICODE
      Encode all characters to Unicode.
  • Method Details

    • values

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