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

Deprecated.

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

please use Result.SC_*

Author:
rbauer

Enum Constant Summary
badRequest400
          Deprecated.  
created201
          Deprecated.  
forbidden403
          Deprecated.  
noContent204
          Deprecated.  
notFound404
          Deprecated.  
ok200
          Deprecated.  
teapot418
          Deprecated.  
 
Field Summary
 int code
          Deprecated.  
 
Method Summary
static Context.HTTP_STATUS valueOf(String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static Context.HTTP_STATUS[] values()
          Deprecated. 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
Deprecated. 

ok200

public static final Context.HTTP_STATUS ok200
Deprecated. 

forbidden403

public static final Context.HTTP_STATUS forbidden403
Deprecated. 

teapot418

public static final Context.HTTP_STATUS teapot418
Deprecated. 

badRequest400

public static final Context.HTTP_STATUS badRequest400
Deprecated. 

noContent204

public static final Context.HTTP_STATUS noContent204
Deprecated. 

created201

public static final Context.HTTP_STATUS created201
Deprecated. 
Field Detail

code

public final int code
Deprecated. 
Method Detail

values

public static Context.HTTP_STATUS[] values()
Deprecated. 
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)
Deprecated. 
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.