Object/Class

org.http4s

HttpDate

Related Docs: class HttpDate | package http4s

Permalink

object HttpDate

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HttpDate
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val Epoch: HttpDate

    Permalink

    The HttpDate equal to Thu, Jan 01 1970 00:00:00 GMT

  5. val MaxValue: HttpDate

    Permalink

    The latest value reprsentable by RFC1123, Fri, 31 Dec 9999 23:59:59 GMT.

  6. val MinValue: HttpDate

    Permalink

    The earliest value reprsentable as an HTTP-date, Mon, 01 Jan 1900 00:00:00 GMT.

    The earliest value reprsentable as an HTTP-date, Mon, 01 Jan 1900 00:00:00 GMT.

    The minimum year is specified by RFC5322 as 1900.

    See also

    https://tools.ietf.org/html/rfc5322#page-14

    https://tools.ietf.org/html/rfc7231#page-65

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def fromEpochSecond(epochSecond: Long): ParseResult[HttpDate]

    Permalink

    Constructs a date from the seconds since the Epoch.

    Constructs a date from the seconds since the Epoch. If out of range, returns a ParseFailure.

  13. def fromInstant(instant: Instant): ParseResult[HttpDate]

    Permalink

    Constructs a date from an instant, truncating to the most recent second.

    Constructs a date from an instant, truncating to the most recent second. If out of range, returns a ParseFailure.

  14. def fromString(s: String): ParseResult[HttpDate]

    Permalink

    Parses a date according to RFC7321, Section 7.1.1.1

    Parses a date according to RFC7321, Section 7.1.1.1

    See also

    https://tools.ietf.org/html/rfc7231#page-65

  15. def fromZonedDateTime(dateTime: ZonedDateTime): ParseResult[HttpDate]

    Permalink

    Constructs a date from an zoned date-time, truncating to the most recent second.

    Constructs a date from an zoned date-time, truncating to the most recent second. If out of range, returns a ParseFailure.

  16. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. def now: HttpDate

    Permalink

    Constructs an HttpDate from the current time.

    Constructs an HttpDate from the current time. Starting on January 1,n 10000, this will throw an exception. The author intends to leave this problem for future generations.

  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  24. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  25. def unsafeFromEpochSecond(epochSecond: Long): HttpDate

    Permalink

    Like fromEpochSecond, but throws any parse failures

  26. def unsafeFromInstant(instant: Instant): HttpDate

    Permalink

    Like fromInstant, but throws any parse failures

  27. def unsafeFromString(s: String): HttpDate

    Permalink

    Like fromString, but throws on invalid input

  28. def unsafeFromZonedDateTime(dateTime: ZonedDateTime): HttpDate

    Permalink

    Like fromZonedDateTime, but throws any parse failures

  29. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped