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