ninja
Enum Context.HTTP_STATUS

java.lang.Object
  extended by java.lang.Enum<Context.HTTP_STATUS>
      extended by ninja.Context.HTTP_STATUS
All Implemented Interfaces:
Serializable, Comparable<Context.HTTP_STATUS>
Enclosing interface:
Context

public static enum Context.HTTP_STATUS
extends Enum<Context.HTTP_STATUS>


Enum Constant Summary
badRequest400
           
created201
           
forbidden403
           
noContent204
           
notFound404
           
ok200
           
teapot418
           
 
Field Summary
 int code
           
 
Method Summary
static Context.HTTP_STATUS valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Context.HTTP_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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

notFound404

public static final Context.HTTP_STATUS notFound404

ok200

public static final Context.HTTP_STATUS ok200

forbidden403

public static final Context.HTTP_STATUS forbidden403

teapot418

public static final Context.HTTP_STATUS teapot418

badRequest400

public static final Context.HTTP_STATUS badRequest400

noContent204

public static final Context.HTTP_STATUS noContent204

created201

public static final Context.HTTP_STATUS created201
Field Detail

code

public final int code
Method Detail

values

public static Context.HTTP_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 (Context.HTTP_STATUS c : Context.HTTP_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 Context.HTTP_STATUS 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 © 2012. All Rights Reserved.