Enum DecoderState

java.lang.Object
java.lang.Enum<DecoderState>
org.apache.mina.http.DecoderState
All Implemented Interfaces:
Serializable, Comparable<DecoderState>

public enum DecoderState extends Enum<DecoderState>
The HTTP decoder states
  • Enum Constant Details

    • NEW

      public static final DecoderState NEW
      waiting for a new HTTP requests, the session is new of last request was completed
    • BODY

      public static final DecoderState BODY
      receiving HTTP body slices
  • Constructor Details

    • DecoderState

      private DecoderState()
  • Method Details

    • values

      public static DecoderState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static DecoderState valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null