sealed abstract case class Status extends Ordered[Status] with Renderable with Product with Serializable
Representation of the HTTP response code and reason
Note: the reason is not important to the protocol and is not considered in equality checks.
- Source
- Status.scala
- See also
[http://tools.ietf.org/html/rfc7231#section-6 RFC7231, Section 6]
[http://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml IANA Status Code Registry]
- Alphabetic
- By Inheritance
- Status
- Serializable
- Serializable
- Product
- Equals
- Renderable
- Ordered
- Comparable
- AnyRef
- Any
- by orderingToOrdered
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Value Members
-
def
<(that: Status): Boolean
- Definition Classes
- Ordered
-
def
<=(that: Status): Boolean
- Definition Classes
- Ordered
-
def
>(that: Status): Boolean
- Definition Classes
- Ordered
-
def
>=(that: Status): Boolean
- Definition Classes
- Ordered
- val code: Int
-
def
compare(that: Status): Int
- Definition Classes
- Status → Ordered
-
def
compareTo(that: Status): Int
- Definition Classes
- Ordered → Comparable
- val isEntityAllowed: Boolean
- def isSuccess: Boolean
- val reason: String
-
def
render(writer: Writer): writer.type
Base method for rendering this object efficiently
Base method for rendering this object efficiently
- Definition Classes
- Status → Renderable
-
def
renderString: String
Generates a String rendering of this object
Generates a String rendering of this object
- Definition Classes
- Renderable
- val responseClass: ResponseClass
-
def
toString(): String
- Definition Classes
- Renderable → Any
-
def
unapply[F[_]](msg: Response[F]): Option[Response[F]]
Helpers for for matching against a Response
- def withReason(reason: String): Status
Shadowed Implicit Value Members
-
def
<(that: Status): Boolean
- Implicit
- This member is added by an implicit conversion from Status to Ordered[Status] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(status: Ordered[Status]).<(that)
- Definition Classes
- Ordered
-
def
<=(that: Status): Boolean
- Implicit
- This member is added by an implicit conversion from Status to Ordered[Status] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(status: Ordered[Status]).<=(that)
- Definition Classes
- Ordered
-
def
>(that: Status): Boolean
- Implicit
- This member is added by an implicit conversion from Status to Ordered[Status] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(status: Ordered[Status]).>(that)
- Definition Classes
- Ordered
-
def
>=(that: Status): Boolean
- Implicit
- This member is added by an implicit conversion from Status to Ordered[Status] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(status: Ordered[Status]).>=(that)
- Definition Classes
- Ordered
-
def
compare(that: Status): Int
- Implicit
- This member is added by an implicit conversion from Status to Ordered[Status] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(status: Ordered[Status]).compare(that)
- Definition Classes
- Ordered
-
def
compareTo(that: Status): Int
- Implicit
- This member is added by an implicit conversion from Status to Ordered[Status] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(status: Ordered[Status]).compareTo(that)
- Definition Classes
- Ordered → Comparable