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