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