object Status extends Serializable
- Alphabetic
- By Inheritance
- Status
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val Accepted: Status
- val BadGateway: Status
- val BadRequest: Status
- val ClientClosedRequest: Status
- val Conflict: Status
- val Continue: Status
- val Created: Status
- val EnhanceYourCalm: Status
- val ExpectationFailed: Status
- val FailedDependency: Status
- val Forbidden: Status
- val Found: Status
- val GatewayTimeout: Status
- val Gone: Status
- val HttpVersionNotSupported: Status
- val InsufficientStorage: Status
- val InternalServerError: Status
- val LengthRequired: Status
- val Locked: Status
- val MethodNotAllowed: Status
- val MovedPermanently: Status
- val MultiStatus: Status
- val MultipleChoices: Status
- val NetworkAuthenticationRequired: Status
- val NoContent: Status
- val NonAuthoritativeInformation: Status
- val NotAcceptable: Status
- val NotExtended: Status
- val NotFound: Status
- val NotImplemented: Status
- val NotModified: Status
- val Ok: Status
- val PartialContent: Status
- val PaymentRequired: Status
- val PermanentRedirect: Status
- val PreconditionFailed: Status
- val PreconditionRequired: Status
- val Processing: Status
- val ProxyAuthenticationRequired: Status
- val RequestEntityTooLarge: Status
- val RequestHeaderFieldsTooLarge: Status
- val RequestTimeout: Status
- val RequestURITooLong: Status
- val RequestedRangeNotSatisfiable: Status
- val ResetContent: Status
- val SeeOther: Status
- val ServiceUnavailable: Status
- val SwitchingProtocols: Status
- val TemporaryRedirect: Status
- val TooManyRequests: Status
- val Unauthorized: Status
- val UnavailableForLegalReasons: Status
- val UnorderedCollection: Status
- val UnprocessableEntity: Status
- val UnsupportedMediaType: Status
- val UpgradeRequired: Status
- val UseProxy: Status
- val VariantAlsoNegotiates: Status
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def fromCode(code: Int): Status
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object ClientError
Matches when the status code is between 400 and 500.
- object Informational
Matches when the status code is between 100 and 200.
- object Redirection
Matches when the status code is between 300 and 400.
- object ServerError
Matches when the status code is between 500 and 600.
- object Successful
Matches when the status code is between 200 and 300.
- object Unknown
Matches when the status code isn't in range of any of the categories: {{Informational}}, {{Successful}}, {{Redirection}}, {{ClientError}}, {{ServerError}}.