Package io.dapr.client
Enum DaprHttp.HttpMethods
- java.lang.Object
-
- java.lang.Enum<DaprHttp.HttpMethods>
-
- io.dapr.client.DaprHttp.HttpMethods
-
- All Implemented Interfaces:
Serializable
,Comparable<DaprHttp.HttpMethods>
- Enclosing class:
- DaprHttp
public static enum DaprHttp.HttpMethods extends Enum<DaprHttp.HttpMethods>
HTTP Methods supported.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DaprHttp.HttpMethods
valueOf(String name)
Returns the enum constant of this type with the specified name.static DaprHttp.HttpMethods[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DaprHttp.HttpMethods NONE
-
GET
public static final DaprHttp.HttpMethods GET
-
PUT
public static final DaprHttp.HttpMethods PUT
-
POST
public static final DaprHttp.HttpMethods POST
-
DELETE
public static final DaprHttp.HttpMethods DELETE
-
HEAD
public static final DaprHttp.HttpMethods HEAD
-
CONNECT
public static final DaprHttp.HttpMethods CONNECT
-
OPTIONS
public static final DaprHttp.HttpMethods OPTIONS
-
TRACE
public static final DaprHttp.HttpMethods TRACE
-
-
Method Detail
-
values
public static DaprHttp.HttpMethods[] 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 (DaprHttp.HttpMethods c : DaprHttp.HttpMethods.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DaprHttp.HttpMethods 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
-
-