org.codehaus.httpcache4j
Enum Status

java.lang.Object
  extended by java.lang.Enum<Status>
      extended by org.codehaus.httpcache4j.Status
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Status>

public enum Status
extends java.lang.Enum<Status>

HTTP Status to return after handling a call.


Enum Constant Summary
ACCEPTED
           
BAD_GATEWAY
           
BAD_REQUEST
           
CONFLICT
           
CONTINUE
           
CREATED
           
EXPECTATION_FAILED
           
FORBIDDEN
           
FOUND
           
GATEWAY_TIMEOUT
           
GONE
           
HTTP_VERSION_NOT_SUPPORTED
           
INTERNAL_SERVER_ERROR
           
LENGTH_REQUIRED
           
METHOD_NOT_ALLOWED
           
MOVED_PERMANENTLY
           
MULTIPLE_CHOICES
           
NO_CONTENT
           
NON_AUTHORITATIVE_INFORMATION
           
NOT_ACCEPTABLE
           
NOT_FOUND
           
NOT_IMPLEMENTED
           
NOT_MODIFIED
           
OK
           
PARTIAL_CONTENT
           
PAYMENT_REQUIRED
           
PRECONDITION_FAILED
           
PROXY_AUTHENTICATION_REQUIRED
           
REQUEST_ENTITY_TOO_LARGE
           
REQUEST_TIMEOUT
           
REQUEST_URI_TOO_LONG
           
REQUESTED_RANGE_NOT_SATISFIABLE
           
RESET_CONTENT
           
SEE_OTHER
           
SERVICE_UNAVAILABLE
           
SWITCHING_PROTOCOLS
           
TEMPORARY_REDIRECT
           
UNAUTHORIZED
           
UNSUPPORTED_MEDIA_TYPE
           
USE_PROXY
           
 
Method Summary
 int getCode()
           
 java.lang.String getName()
           
 boolean isBodyContentAllowed()
           
 boolean isClientError()
           
 boolean isServerError()
           
 java.lang.String toString()
           
static Status valueOf(int statusCode)
           
static Status valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Status[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONTINUE

public static final Status CONTINUE

SWITCHING_PROTOCOLS

public static final Status SWITCHING_PROTOCOLS

OK

public static final Status OK

CREATED

public static final Status CREATED

ACCEPTED

public static final Status ACCEPTED

NON_AUTHORITATIVE_INFORMATION

public static final Status NON_AUTHORITATIVE_INFORMATION

NO_CONTENT

public static final Status NO_CONTENT

RESET_CONTENT

public static final Status RESET_CONTENT

PARTIAL_CONTENT

public static final Status PARTIAL_CONTENT

MULTIPLE_CHOICES

public static final Status MULTIPLE_CHOICES

MOVED_PERMANENTLY

public static final Status MOVED_PERMANENTLY

FOUND

public static final Status FOUND

SEE_OTHER

public static final Status SEE_OTHER

NOT_MODIFIED

public static final Status NOT_MODIFIED

USE_PROXY

public static final Status USE_PROXY

TEMPORARY_REDIRECT

public static final Status TEMPORARY_REDIRECT

BAD_REQUEST

public static final Status BAD_REQUEST

UNAUTHORIZED

public static final Status UNAUTHORIZED

PAYMENT_REQUIRED

public static final Status PAYMENT_REQUIRED

FORBIDDEN

public static final Status FORBIDDEN

NOT_FOUND

public static final Status NOT_FOUND

METHOD_NOT_ALLOWED

public static final Status METHOD_NOT_ALLOWED

NOT_ACCEPTABLE

public static final Status NOT_ACCEPTABLE

PROXY_AUTHENTICATION_REQUIRED

public static final Status PROXY_AUTHENTICATION_REQUIRED

REQUEST_TIMEOUT

public static final Status REQUEST_TIMEOUT

CONFLICT

public static final Status CONFLICT

GONE

public static final Status GONE

LENGTH_REQUIRED

public static final Status LENGTH_REQUIRED

PRECONDITION_FAILED

public static final Status PRECONDITION_FAILED

REQUEST_ENTITY_TOO_LARGE

public static final Status REQUEST_ENTITY_TOO_LARGE

REQUEST_URI_TOO_LONG

public static final Status REQUEST_URI_TOO_LONG

UNSUPPORTED_MEDIA_TYPE

public static final Status UNSUPPORTED_MEDIA_TYPE

REQUESTED_RANGE_NOT_SATISFIABLE

public static final Status REQUESTED_RANGE_NOT_SATISFIABLE

EXPECTATION_FAILED

public static final Status EXPECTATION_FAILED

INTERNAL_SERVER_ERROR

public static final Status INTERNAL_SERVER_ERROR

NOT_IMPLEMENTED

public static final Status NOT_IMPLEMENTED

BAD_GATEWAY

public static final Status BAD_GATEWAY

SERVICE_UNAVAILABLE

public static final Status SERVICE_UNAVAILABLE

GATEWAY_TIMEOUT

public static final Status GATEWAY_TIMEOUT

HTTP_VERSION_NOT_SUPPORTED

public static final Status HTTP_VERSION_NOT_SUPPORTED
Method Detail

values

public static Status[] 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 (Status c : Status.values())
    System.out.println(c);

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

valueOf

public static Status valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getCode

public int getCode()

getName

public java.lang.String getName()

isClientError

public boolean isClientError()

isServerError

public boolean isServerError()

isBodyContentAllowed

public boolean isBodyContentAllowed()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<Status>

valueOf

public static Status valueOf(int statusCode)


Copyright © 2008-2009. All Rights Reserved.