public enum RequestTypeEnum extends Enum<RequestTypeEnum>
| 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 DELETE
public static final RequestTypeEnum GET
public static final RequestTypeEnum OPTIONS
public static final RequestTypeEnum POST
public static final RequestTypeEnum PUT
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–2016 University Health Network. All rights reserved.