public static enum DaprHttp.HttpMethods extends Enum<DaprHttp.HttpMethods>
Modifier and Type | Method and 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.
|
public static final DaprHttp.HttpMethods GET
public static final DaprHttp.HttpMethods PUT
public static final DaprHttp.HttpMethods POST
public static final DaprHttp.HttpMethods DELETE
public static DaprHttp.HttpMethods[] values()
for (DaprHttp.HttpMethods c : DaprHttp.HttpMethods.values()) System.out.println(c);
public static DaprHttp.HttpMethods valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.