public static enum TaskOptions.Method extends java.lang.Enum<TaskOptions.Method>
Modifier and Type | Method and Description |
---|---|
static TaskOptions.Method |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskOptions.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskOptions.Method DELETE
public static final TaskOptions.Method GET
public static final TaskOptions.Method HEAD
public static final TaskOptions.Method POST
public static final TaskOptions.Method PUT
public static final TaskOptions.Method PULL
public static TaskOptions.Method[] values()
for (TaskOptions.Method c : TaskOptions.Method.values()) System.out.println(c);
public static TaskOptions.Method valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null