Enum Class HttpMethod

java.lang.Object
java.lang.Enum<HttpMethod>
com.buildless.telemetry.HttpMethod
All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite, com.google.protobuf.ProtocolMessageEnum, Serializable, Comparable<HttpMethod>, Constable

public enum HttpMethod extends Enum<HttpMethod> implements com.google.protobuf.ProtocolMessageEnum
 ## HTTP Method

 Specifies the HTTP method which was active for a given HTTP request. These methods are defined in the HTTP specs
 managed by the IETF.
 
Protobuf enum buildless.telemetry.HttpMethod
  • Enum Constant Details

    • GET

      public static final HttpMethod GET
       HTTP `GET`.
       
      GET = 0;
    • PUT

      public static final HttpMethod PUT
       HTTP `PUT`.
       
      PUT = 1;
    • POST

      public static final HttpMethod POST
       HTTP `POST`.
       
      POST = 2;
    • DELETE

      public static final HttpMethod DELETE
       HTTP `DELETE`.
       
      DELETE = 3;
    • OPTIONS

      public static final HttpMethod OPTIONS
       HTTP `OPTIONS`.
       
      OPTIONS = 5;
    • OTHER

      public static final HttpMethod OTHER
       Other HTTP methods; custom HTTP methods.
       
      OTHER = 99;
    • UNRECOGNIZED

      public static final HttpMethod UNRECOGNIZED
  • Field Details

    • GET_VALUE

      public static final int GET_VALUE
       HTTP `GET`.
       
      GET = 0;
      See Also:
    • PUT_VALUE

      public static final int PUT_VALUE
       HTTP `PUT`.
       
      PUT = 1;
      See Also:
    • POST_VALUE

      public static final int POST_VALUE
       HTTP `POST`.
       
      POST = 2;
      See Also:
    • DELETE_VALUE

      public static final int DELETE_VALUE
       HTTP `DELETE`.
       
      DELETE = 3;
      See Also:
    • HEAD_VALUE

      public static final int HEAD_VALUE
       HTTP `HEAD`.
       
      HEAD = 4;
      See Also:
    • OPTIONS_VALUE

      public static final int OPTIONS_VALUE
       HTTP `OPTIONS`.
       
      OPTIONS = 5;
      See Also:
    • OTHER_VALUE

      public static final int OTHER_VALUE
       Other HTTP methods; custom HTTP methods.
       
      OTHER = 99;
      See Also:
  • Method Details

    • values

      public static HttpMethod[] 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 HttpMethod 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
    • getNumber

      public final int getNumber()
      Specified by:
      getNumber in interface com.google.protobuf.Internal.EnumLite
      Specified by:
      getNumber in interface com.google.protobuf.ProtocolMessageEnum
    • valueOf

      @Deprecated public static HttpMethod valueOf(int value)
      Deprecated.
      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:
      value - 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
    • forNumber

      public static HttpMethod forNumber(int value)
      Parameters:
      value - The numeric wire value of the corresponding enum entry.
      Returns:
      The enum associated with the given numeric wire value.
    • internalGetValueMap

      public static com.google.protobuf.Internal.EnumLiteMap<HttpMethod> internalGetValueMap()
    • getValueDescriptor

      public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
      Specified by:
      getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
    • getDescriptorForType

      public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
      Specified by:
      getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
    • getDescriptor

      public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
    • valueOf

      public static HttpMethod valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
      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:
      desc - 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