Enum Class HttpEntityType

java.lang.Object
java.lang.Enum<HttpEntityType>
org.frankframework.http.HttpEntityType
All Implemented Interfaces:
Serializable, Comparable<HttpEntityType>, Constable

public enum HttpEntityType extends Enum<HttpEntityType>
  • Enum Constant Details

    • RAW

      public static final HttpEntityType RAW
      The input message is sent unchanged as character data, like text, XML or JSON, with possibly parameter data appended. When there are no parameters to be appended, the output of this option is the same as BINARY.
    • BINARY

      public static final HttpEntityType BINARY
      The input message is sent unchanged as binary or character data. The mimetype and character set on the HTTP entity will determine how the client interprets the data.
    • URLENCODED

      public static final HttpEntityType URLENCODED
      Yields a x-www-form-urlencoded form entity
    • FORMDATA

      public static final HttpEntityType FORMDATA
      Yields a multipart/form-data form entity
    • MTOM

      public static final HttpEntityType MTOM
      Yields a MTOM multipart/related form entity
  • Method Details

    • values

      public static HttpEntityType[] 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

      public static HttpEntityType valueOf(String name)
      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 name
      NullPointerException - if the argument is null