Package io.dapr.v1
Enum Class CommonProtos.HTTPExtension.Verb
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<CommonProtos.HTTPExtension.Verb>
,Constable
- Enclosing class:
- CommonProtos.HTTPExtension
public static enum CommonProtos.HTTPExtension.Verb
extends Enum<CommonProtos.HTTPExtension.Verb>
implements com.google.protobuf.ProtocolMessageEnum
Type of HTTP 1.1 Methods RFC 7231: https://tools.ietf.org/html/rfc7231#page-24 RFC 5789: https://datatracker.ietf.org/doc/html/rfc5789Protobuf enum
dapr.proto.common.v1.HTTPExtension.Verb
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
CONNECT = 6;
static final int
DELETE = 5;
static final int
GET = 1;
static final int
HEAD = 2;
static final int
NONE = 0;
static final int
OPTIONS = 7;
static final int
PATCH = 9;
static final int
POST = 3;
static final int
PUT = 4;
static final int
TRACE = 8;
-
Method Summary
Modifier and TypeMethodDescriptionforNumber
(int value) static final com.google.protobuf.Descriptors.EnumDescriptor
final com.google.protobuf.Descriptors.EnumDescriptor
final int
final com.google.protobuf.Descriptors.EnumValueDescriptor
static com.google.protobuf.Internal.EnumLiteMap<CommonProtos.HTTPExtension.Verb>
valueOf
(int value) Deprecated.valueOf
(com.google.protobuf.Descriptors.EnumValueDescriptor desc) Returns the enum constant of this class with the specified name.Returns the enum constant of this class with the specified name.static CommonProtos.HTTPExtension.Verb[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
NONE = 0;
-
GET
GET = 1;
-
HEAD
HEAD = 2;
-
POST
POST = 3;
-
PUT
PUT = 4;
-
DELETE
DELETE = 5;
-
CONNECT
CONNECT = 6;
-
OPTIONS
OPTIONS = 7;
-
TRACE
TRACE = 8;
-
PATCH
PATCH = 9;
-
UNRECOGNIZED
-
-
Field Details
-
NONE_VALUE
public static final int NONE_VALUENONE = 0;
- See Also:
-
GET_VALUE
public static final int GET_VALUEGET = 1;
- See Also:
-
HEAD_VALUE
public static final int HEAD_VALUEHEAD = 2;
- See Also:
-
POST_VALUE
public static final int POST_VALUEPOST = 3;
- See Also:
-
PUT_VALUE
public static final int PUT_VALUEPUT = 4;
- See Also:
-
DELETE_VALUE
public static final int DELETE_VALUEDELETE = 5;
- See Also:
-
CONNECT_VALUE
public static final int CONNECT_VALUECONNECT = 6;
- See Also:
-
OPTIONS_VALUE
public static final int OPTIONS_VALUEOPTIONS = 7;
- See Also:
-
TRACE_VALUE
public static final int TRACE_VALUETRACE = 8;
- See Also:
-
PATCH_VALUE
public static final int PATCH_VALUEPATCH = 9;
- See Also:
-
-
Method Details
-
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
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 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.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 nameNullPointerException
- if the argument is null
-
forNumber
- 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<CommonProtos.HTTPExtension.Verb> 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 CommonProtos.HTTPExtension.Verb 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 nameNullPointerException
- if the argument is null
-