public enum RequestTypeEnum extends Enum<RequestTypeEnum>
| Enum Constant and Description |
|---|
CONNECT |
DELETE |
GET |
HEAD |
OPTIONS |
PATCH |
POST |
PUT |
TRACE |
TRACK |
| Modifier and Type | Method and Description |
|---|---|
static RequestTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestTypeEnum CONNECT
public static final RequestTypeEnum DELETE
public static final RequestTypeEnum GET
public static final RequestTypeEnum OPTIONS
public static final RequestTypeEnum PATCH
public static final RequestTypeEnum POST
public static final RequestTypeEnum PUT
public static final RequestTypeEnum TRACE
public static final RequestTypeEnum TRACK
public static final RequestTypeEnum HEAD
public static RequestTypeEnum[] values()
for (RequestTypeEnum c : RequestTypeEnum.values()) System.out.println(c);
public static RequestTypeEnum 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 © 2014–2017 University Health Network. All rights reserved.