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