Uses of Enum
org.simpleframework.http.Status

Packages that use Status
Package
Description
 
  • Uses of Status in org.simpleframework.http

    Subclasses with type arguments of type Status in org.simpleframework.http
    Modifier and Type
    Class
    Description
    enum 
    The Status enumeration is used to specify status codes and the descriptions of those status codes.
    Methods in org.simpleframework.http that return Status
    Modifier and Type
    Method
    Description
    ResponseWrapper.getStatus()
    This is used to acquire the status from the response.
    static Status
    Status.getStatus(int code)
    This is used to provide the status value.
    StatusLine.getStatus()
    This is used to acquire the status from the response.
    static Status
    Status.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    static Status[]
    Status.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in org.simpleframework.http with parameters of type Status
    Modifier and Type
    Method
    Description
    void
    ResponseWrapper.setStatus(Status status)
    This is used to set the status code and description for this response.
    void
    StatusLine.setStatus(Status status)
    This is used to set the status code and description for this response.