Package com.google.cloud.tasks.v2
Enum HttpMethod
- java.lang.Object
-
- java.lang.Enum<HttpMethod>
-
- com.google.cloud.tasks.v2.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 deliver the task.
Protobuf enumgoogle.cloud.tasks.v2.HttpMethod
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETE
HTTP DELETEGET
HTTP GETHEAD
HTTP HEADHTTP_METHOD_UNSPECIFIED
HTTP method unspecifiedOPTIONS
HTTP OPTIONSPATCH
HTTP PATCHPOST
HTTP POSTPUT
HTTP PUTUNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
DELETE_VALUE
HTTP DELETEstatic int
GET_VALUE
HTTP GETstatic int
HEAD_VALUE
HTTP HEADstatic int
HTTP_METHOD_UNSPECIFIED_VALUE
HTTP method unspecifiedstatic int
OPTIONS_VALUE
HTTP OPTIONSstatic int
PATCH_VALUE
HTTP PATCHstatic int
POST_VALUE
HTTP POSTstatic int
PUT_VALUE
HTTP PUT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static HttpMethod
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<HttpMethod>
internalGetValueMap()
static HttpMethod
valueOf(int value)
Deprecated.static HttpMethod
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static HttpMethod
valueOf(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
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
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:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in 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:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in 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
-
-