Enum HttpMethod
- java.lang.Object
-
- java.lang.Enum<HttpMethod>
-
- com.google.cloud.scheduler.v1beta1.HttpMethod
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<HttpMethod>
public enum HttpMethod extends Enum<HttpMethod> implements com.google.protobuf.ProtocolMessageEnum
The HTTP method used to execute the job.
Protobuf enumgoogle.cloud.scheduler.v1beta1.HttpMethod
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETEHTTP DELETEGETHTTP GETHEADHTTP HEADHTTP_METHOD_UNSPECIFIEDHTTP method unspecified.OPTIONSHTTP OPTIONSPATCHHTTP PATCHPOSTHTTP POSTPUTHTTP PUTUNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intDELETE_VALUEHTTP DELETEstatic intGET_VALUEHTTP GETstatic intHEAD_VALUEHTTP HEADstatic intHTTP_METHOD_UNSPECIFIED_VALUEHTTP method unspecified.static intOPTIONS_VALUEHTTP OPTIONSstatic intPATCH_VALUEHTTP PATCHstatic intPOST_VALUEHTTP POSTstatic intPUT_VALUEHTTP PUT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static HttpMethodforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<HttpMethod>internalGetValueMap()static HttpMethodvalueOf(int value)Deprecated.static HttpMethodvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static HttpMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static HttpMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HTTP_METHOD_UNSPECIFIED
public static final HttpMethod HTTP_METHOD_UNSPECIFIED
HTTP method unspecified. Defaults to POST.
HTTP_METHOD_UNSPECIFIED = 0;
-
POST
public static final HttpMethod POST
HTTP POST
POST = 1;
-
GET
public static final HttpMethod GET
HTTP GET
GET = 2;
-
HEAD
public static final HttpMethod HEAD
HTTP HEAD
HEAD = 3;
-
PUT
public static final HttpMethod PUT
HTTP PUT
PUT = 4;
-
DELETE
public static final HttpMethod DELETE
HTTP DELETE
DELETE = 5;
-
PATCH
public static final HttpMethod PATCH
HTTP PATCH
PATCH = 6;
-
OPTIONS
public static final HttpMethod OPTIONS
HTTP OPTIONS
OPTIONS = 7;
-
UNRECOGNIZED
public static final HttpMethod UNRECOGNIZED
-
-
Field Detail
-
HTTP_METHOD_UNSPECIFIED_VALUE
public static final int HTTP_METHOD_UNSPECIFIED_VALUE
HTTP method unspecified. Defaults to POST.
HTTP_METHOD_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
POST_VALUE
public static final int POST_VALUE
HTTP POST
POST = 1;- See Also:
- Constant Field Values
-
GET_VALUE
public static final int GET_VALUE
HTTP GET
GET = 2;- See Also:
- Constant Field Values
-
HEAD_VALUE
public static final int HEAD_VALUE
HTTP HEAD
HEAD = 3;- See Also:
- Constant Field Values
-
PUT_VALUE
public static final int PUT_VALUE
HTTP PUT
PUT = 4;- See Also:
- Constant Field Values
-
DELETE_VALUE
public static final int DELETE_VALUE
HTTP DELETE
DELETE = 5;- See Also:
- Constant Field Values
-
PATCH_VALUE
public static final int PATCH_VALUE
HTTP PATCH
PATCH = 6;- See Also:
- Constant Field Values
-
OPTIONS_VALUE
public static final int OPTIONS_VALUE
HTTP OPTIONS
OPTIONS = 7;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static HttpMethod[] 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 (HttpMethod c : HttpMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpMethod valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static HttpMethod valueOf(int value)
Deprecated.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:
value- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- 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:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.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 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:
desc- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-