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