Enum Class RequestType

java.lang.Object
java.lang.Enum<RequestType>
org.jolokia.server.core.util.RequestType
All Implemented Interfaces:
Serializable, Comparable<RequestType>, java.lang.constant.Constable

public enum RequestType extends Enum<RequestType>
Enumeration for encapsulating the request mode.
  • Enum Constant Details

  • Method Details

    • values

      public static RequestType[] 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 RequestType 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
    • getName

      public String getName()
    • getTypeByName

      public static RequestType getTypeByName(String pName)
      Get the request type by a string representation. This is case insensitive.
      Parameters:
      pName - the type associated with the given name
      Returns:
      type type looked up
      Throws:
      IllegalArgumentException - if the argument is either null or does not map to a type.