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