public enum Method extends Enum<Method>
| Enum Constant and Description |
|---|
CONNECT |
COPY |
DELETE |
GET |
HEAD |
LOCK |
MKCOL |
MOVE |
OPTIONS |
PATCH |
POST |
PROPFIND |
PROPPATCH |
PUT |
TRACE |
UNLOCK |
| Modifier and Type | Method and Description |
|---|---|
static Method |
of(String val) |
static Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Method GET
public static final Method PUT
public static final Method POST
public static final Method DELETE
public static final Method HEAD
public static final Method OPTIONS
public static final Method TRACE
public static final Method CONNECT
public static final Method PATCH
public static final Method PROPFIND
public static final Method PROPPATCH
public static final Method MKCOL
public static final Method MOVE
public static final Method COPY
public static final Method LOCK
public static final Method UNLOCK
public static Method[] values()
for (Method c : Method.values()) System.out.println(c);
public static Method 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 © 2018. All rights reserved.