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