Package org.frankframework.http
Enum Class HttpSender.PostType
- All Implemented Interfaces:
Serializable
,Comparable<HttpSender.PostType>
,Constable
- Enclosing class:
- HttpSender
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe input message is sent unchanged as binary dataYields a multipart/form-data form entityYields a MTOM multipart/related form entityThe input message is sent unchanged as character data, like text, XML or JSON, with possibly parameter data appendedYields a x-www-form-urlencoded form entity -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpSender.PostType
Returns the enum constant of this class with the specified name.static HttpSender.PostType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RAW
The input message is sent unchanged as character data, like text, XML or JSON, with possibly parameter data appended -
BINARY
The input message is sent unchanged as binary data -
URLENCODED
Yields a x-www-form-urlencoded form entity -
FORMDATA
Yields a multipart/form-data form entity -
MTOM
Yields a MTOM multipart/related form entity
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-