public static enum Response.StatusCode extends java.lang.Enum<Response.StatusCode>
| Modifier and Type | Method and Description |
|---|---|
static Response.StatusCode |
fromInt(int code) |
static Response.StatusCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Response.StatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Response.StatusCode UNKNOWN
public static final Response.StatusCode OK
public static final Response.StatusCode EOF
public static final Response.StatusCode NO_SUCH_FILE
public static final Response.StatusCode PERMISSION_DENIED
public static final Response.StatusCode FAILURE
public static final Response.StatusCode BAD_MESSAGE
public static final Response.StatusCode NO_CONNECTION
public static final Response.StatusCode CONNECITON_LOST
public static final Response.StatusCode OP_UNSUPPORTED
public static final Response.StatusCode INVALID_HANDLE
public static final Response.StatusCode NO_SUCH_PATH
public static final Response.StatusCode FILE_ALREADY_EXISTS
public static final Response.StatusCode WRITE_PROTECT
public static final Response.StatusCode NO_MEDIA
public static final Response.StatusCode NO_SPACE_ON_FILESYSTEM
public static final Response.StatusCode QUOTA_EXCEEDED
public static final Response.StatusCode UNKNOWN_PRINCIPAL
public static final Response.StatusCode LOCK_CONFLICT
public static final Response.StatusCode DIR_NOT_EMPTY
public static final Response.StatusCode NOT_A_DIRECTORY
public static final Response.StatusCode INVALID_FILENAME
public static final Response.StatusCode LINK_LOOP
public static final Response.StatusCode CANNOT_DELETE
public static final Response.StatusCode INVALID_PARAMETER
public static final Response.StatusCode FILE_IS_A_DIRECTORY
public static final Response.StatusCode BYTE_RANGE_LOCK_CONFLICT
public static final Response.StatusCode BYTE_RANGE_LOCK_REFUSED
public static final Response.StatusCode DELETE_PENDING
public static final Response.StatusCode FILE_CORRUPT
public static final Response.StatusCode OWNER_INVALID
public static final Response.StatusCode GROUP_INVALID
public static final Response.StatusCode NO_MATCHING_BYTE_RANGE_LOCK
public static Response.StatusCode[] values()
for (Response.StatusCode c : Response.StatusCode.values()) System.out.println(c);
public static Response.StatusCode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static Response.StatusCode fromInt(int code)