final 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://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml IANA Status Code Registry]
[http://tools.ietf.org/html/rfc7231#section-6 RFC7231, Section 6]
- 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
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (Status, B)
-
def
<(that: Status): Boolean
- Definition Classes
- Ordered
-
def
<=(that: Status): Boolean
- Definition Classes
- Ordered
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
>(that: Status): Boolean
- Definition Classes
- Ordered
-
def
>=(that: Status): Boolean
- Definition Classes
- Ordered
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- val code: Int
-
def
compare(that: Status): Int
- Definition Classes
- Status → Ordered
-
def
compareTo(that: Status): Int
- Definition Classes
- Ordered → Comparable
- def ensuring(cond: (Status) ⇒ Boolean, msg: ⇒ Any): Status
- def ensuring(cond: (Status) ⇒ Boolean): Status
- def ensuring(cond: Boolean, msg: ⇒ Any): Status
- def ensuring(cond: Boolean): Status
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- val isEntityAllowed: Boolean
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isSuccess: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- 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
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Renderable → Any
-
def
unapply(msg: Response): Option[Response]
Helpers for for matching against a Response
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def withReason(reason: String): Status
- def →[B](y: B): (Status, B)
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