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