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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

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

  5. def -(millis: Long): DateTime

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

  6. def <(that: DateTime): Boolean

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

    Definition Classes
    Ordered
  8. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  10. def >(that: DateTime): Boolean

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

    Definition Classes
    Ordered
  12. def _1: Int

    Definition Classes
    DateTime → Product6
  13. def _2: Int

    Definition Classes
    DateTime → Product6
  14. def _3: Int

    Definition Classes
    DateTime → Product6
  15. def _4: Int

    Definition Classes
    DateTime → Product6
  16. def _5: Int

    Definition Classes
    DateTime → Product6
  17. def _6: Int

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

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

    Definition Classes
    DateTime → Equals
  20. val clicks: Long

  21. def clone(): AnyRef

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

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

    Definition Classes
    Ordered → Comparable
  24. val day: Int

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

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

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

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

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

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

  31. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  32. val minute: Int

  33. val month: Int

  34. 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

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

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

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

    Definition Classes
    AnyRef
  38. def productArity: Int

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

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

    Definition Classes
    Product
  41. def productPrefix: String

    Definition Classes
    Product
  42. def render(writer: Writer): writer.type

    yyyy-mm-ddThh:mm:ss

    yyyy-mm-ddThh:mm:ss

    Definition Classes
    DateTimeRenderable
  43. def renderIsoDate(w: Writer): w.type

    yyyy-mm-dd

  44. def renderIsoDateTimeString(w: Writer): w.type

    yyyy-mm-ddThh:mm:ss

  45. def renderIsoLikeDateTimeString(w: Writer): w.type

    yyyy-mm-dd hh:mm:ss

  46. def renderRfc1123DateTimeString(w: Writer): w.type

    RFC1123 date string, e.

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

  47. def renderString: String

    Generates a String rendering of this object

    Generates a String rendering of this object

    Definition Classes
    Renderable
  48. val second: Int

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

    Definition Classes
    AnyRef
  50. def toIsoDateString: String

    yyyy-mm-dd

  51. def toIsoDateTimeString: String

    yyyy-mm-ddThh:mm:ss

  52. def toIsoLikeDateTimeString: String

    yyyy-mm-dd hh:mm:ss

  53. def toRfc1123DateTimeString: String

    RFC1123 date string, e.

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

  54. def toString(): String

    yyyy-mm-ddThh:mm:ss

    yyyy-mm-ddThh:mm:ss

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

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

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

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

  59. def weekdayStr: String

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

  60. 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