org.http4s

DateTime

final class DateTime extends Ordered[DateTime] with Renderable with Product6[Int, Int, Int, Int, Int, Int]

Immutable, fast and efficient Date + Time implementation without any dependencies. Does not support TimeZones, all DateTime values are always GMT based. Note that this implementation discards milliseconds (i.e. rounds down to full seconds).

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. DateTime
  2. Product6
  3. Product
  4. Equals
  5. Renderable
  6. Ordered
  7. Comparable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def +(millis: Long): DateTime

    Creates a new DateTime that represents the point in time the given number of ms later.

  4. def -(millis: Long): DateTime

    Creates a new DateTime that represents the point in time the given number of ms earlier.

  5. def <(that: DateTime): Boolean

    Definition Classes
    Ordered
  6. def <=(that: DateTime): Boolean

    Definition Classes
    Ordered
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  8. def >(that: DateTime): Boolean

    Definition Classes
    Ordered
  9. def >=(that: DateTime): Boolean

    Definition Classes
    Ordered
  10. def _1: Int

    Definition Classes
    DateTime → Product6
  11. def _2: Int

    Definition Classes
    DateTime → Product6
  12. def _3: Int

    Definition Classes
    DateTime → Product6
  13. def _4: Int

    Definition Classes
    DateTime → Product6
  14. def _5: Int

    Definition Classes
    DateTime → Product6
  15. def _6: Int

    Definition Classes
    DateTime → Product6
  16. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  17. def canEqual(that: Any): Boolean

    Definition Classes
    DateTime → Equals
  18. val clicks: Long

  19. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. def compare(that: DateTime): Int

    Definition Classes
    DateTime → Ordered
  21. def compareTo(that: DateTime): Int

    Definition Classes
    Ordered → Comparable
  22. val day: Int

  23. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. def equals(obj: Any): Boolean

    Definition Classes
    DateTime → Equals → AnyRef → Any
  25. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. final def getClass(): Class[_]

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

    Definition Classes
    DateTime → AnyRef → Any
  28. val hour: Int

  29. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  30. val minute: Int

  31. val month: Int

  32. def monthStr: String

    The day of the month as a 3 letter abbreviation: Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov or Dec

  33. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  34. final def notify(): Unit

    Definition Classes
    AnyRef
  35. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  36. def productArity: Int

    Definition Classes
    Product6 → Product
  37. def productElement(n: Int): Any

    Definition Classes
    Product6 → Product
    Annotations
    @throws( ... )
  38. def productIterator: Iterator[Any]

    Definition Classes
    Product
  39. def productPrefix: String

    Definition Classes
    Product
  40. def render[W <: Writer](writer: W): writer.type

    yyyy-mm-ddThh:mm:ss

    yyyy-mm-ddThh:mm:ss

    Definition Classes
    DateTimeRenderable
  41. def renderIsoDate[W <: Writer](w: W): w.type

    yyyy-mm-dd

  42. def renderIsoDateTimeString[W <: Writer](w: W): w.type

    yyyy-mm-ddThh:mm:ss

  43. def renderIsoLikeDateTimeString[W <: Writer](w: W): w.type

    yyyy-mm-dd hh:mm:ss

  44. def renderRfc1123DateTimeString[W <: Writer](w: W): w.type

    RFC1123 date string, e.g.

    RFC1123 date string, e.g. Sun, 06 Nov 1994 08:49:37 GMT

  45. def renderString: String

    Definition Classes
    Renderable
  46. val second: Int

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

    Definition Classes
    AnyRef
  48. def toIsoDateString: String

    yyyy-mm-dd

  49. def toIsoDateTimeString: String

    yyyy-mm-ddThh:mm:ss

  50. def toIsoLikeDateTimeString: String

    yyyy-mm-dd hh:mm:ss

  51. def toRfc1123DateTimeString: String

    RFC1123 date string, e.g.

    RFC1123 date string, e.g. Sun, 06 Nov 1994 08:49:37 GMT

  52. def toString(): String

    yyyy-mm-ddThh:mm:ss

    yyyy-mm-ddThh:mm:ss

    Definition Classes
    DateTimeRenderable → AnyRef → Any
  53. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  56. val weekday: Int

  57. def weekdayStr: String

    The day of the week as a 3 letter abbreviation: Sun, Mon, Tue, Wed, Thu, Fri or Sat

  58. val year: Int

Inherited from Product6[Int, Int, Int, Int, Int, Int]

Inherited from Product

Inherited from Equals

Inherited from Renderable

Inherited from Ordered[DateTime]

Inherited from Comparable[DateTime]

Inherited from AnyRef

Inherited from Any

Ungrouped