ninja
Enum Context.HTTP_STATUS
java.lang.Object
java.lang.Enum<Context.HTTP_STATUS>
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>
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
code
public final int code
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.