public static enum HttpSender.PostType extends Enum<HttpSender.PostType>
Enum Constant and Description |
---|
BINARY
The input message is sent unchanged as binary data
|
FORMDATA
Yields a multipart/form-data form entity
|
MTOM
Yields a MTOM multipart/related form entity
|
RAW
The input message is sent unchanged as character data, like text, XML or JSON, with possibly parameter data appended
|
URLENCODED
Yields a x-www-form-urlencoded form entity
|
Modifier and Type | Method and Description |
---|---|
static HttpSender.PostType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpSender.PostType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpSender.PostType RAW
public static final HttpSender.PostType BINARY
public static final HttpSender.PostType URLENCODED
public static final HttpSender.PostType FORMDATA
public static final HttpSender.PostType MTOM
public static HttpSender.PostType[] values()
for (HttpSender.PostType c : HttpSender.PostType.values()) System.out.println(c);
public static HttpSender.PostType 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.