org.restlet.engine.connector
Enum MessageState

java.lang.Object
  extended by java.lang.Enum<MessageState>
      extended by org.restlet.engine.connector.MessageState
All Implemented Interfaces:
Serializable, Comparable<MessageState>

public enum MessageState
extends Enum<MessageState>

Enumeration of the states of the HTTP reading or writing.

Author:
Jerome Louvel

Enum Constant Summary
BODY
          The body is being processed.
END
          The end line is being processed.
HEADERS
          The header lines are being processed.
IDLE
          No message being processed.
START
          The start line is being processed.
 
Method Summary
static MessageState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MessageState[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

IDLE

public static final MessageState IDLE
No message being processed.


START

public static final MessageState START
The start line is being processed.


HEADERS

public static final MessageState HEADERS
The header lines are being processed.


BODY

public static final MessageState BODY
The body is being processed.


END

public static final MessageState END
The end line is being processed.

Method Detail

values

public static MessageState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MessageState c : MessageState.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MessageState 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


Copyright © 2005-2013 Restlet.