com.ibm.ctg.monitoring

Enum HttpVerb

  • java.lang.Object
    • java.lang.Enum<HttpVerb>
      • com.ibm.ctg.monitoring.HttpVerb
  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<HttpVerb>


    public enum HttpVerb
    extends java.lang.Enum<HttpVerb>
    HttpVerb enumerates the HTTP methods which a request may call.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant and Description
      DELETE
      An HTTP DELETE request.
      GET
      An HTTP GET request.
      HEAD
      An HTTP HEAD request.
      POST
      An HTTP POST request.
      PUT
      An HTTP PUT request.
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      static HttpVerb valueOf(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static HttpVerb[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • GET

        public static final HttpVerb GET
        An HTTP GET request.
      • POST

        public static final HttpVerb POST
        An HTTP POST request.
      • PUT

        public static final HttpVerb PUT
        An HTTP PUT request.
      • DELETE

        public static final HttpVerb DELETE
        An HTTP DELETE request.
      • HEAD

        public static final HttpVerb HEAD
        An HTTP HEAD request.
    • Method Detail

      • values

        public static HttpVerb[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (HttpVerb c : HttpVerb.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static HttpVerb valueOf(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null

©Copyright IBM Corp. 1994, 2016


Legal