Class/Object

org.http4s

DateTime

Related Docs: object DateTime | package http4s

Permalink

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
Product6[Int, Int, Int, Int, Int, Int], Product, Equals, Renderable, Ordered[DateTime], Comparable[DateTime], AnyRef, Any
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
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. def +(millis: Long): DateTime

    Permalink

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

  4. def -(millis: Long): DateTime

    Permalink

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

  5. def <(that: DateTime): Boolean

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

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

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

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

    Permalink
    Definition Classes
    Ordered
  10. def _1: Int

    Permalink
    Definition Classes
    DateTime → Product6
  11. def _2: Int

    Permalink
    Definition Classes
    DateTime → Product6
  12. def _3: Int

    Permalink
    Definition Classes
    DateTime → Product6
  13. def _4: Int

    Permalink
    Definition Classes
    DateTime → Product6
  14. def _5: Int

    Permalink
    Definition Classes
    DateTime → Product6
  15. def _6: Int

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

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

    Permalink
    Definition Classes
    DateTime → Equals
  18. val clicks: Long

    Permalink
  19. def clone(): AnyRef

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

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

    Permalink
    Definition Classes
    Ordered → Comparable
  22. val day: Int

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

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

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

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

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

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

    Permalink
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. val minute: Int

    Permalink
  31. val month: Int

    Permalink
  32. def monthStr: String

    Permalink

    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

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

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

    Permalink
    Definition Classes
    AnyRef
  36. def productArity: Int

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

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

    Permalink
    Definition Classes
    Product
  39. def productPrefix: String

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

    Permalink

    yyyy-mm-ddThh:mm:ss

    yyyy-mm-ddThh:mm:ss

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

    Permalink

    yyyy-mm-dd

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

    Permalink

    yyyy-mm-ddThh:mm:ss

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

    Permalink

    yyyy-mm-dd hh:mm:ss

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

    Permalink

    RFC1123 date string, e.g.

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

  45. def renderString: String

    Permalink

    Generates a String rendering of this object

    Generates a String rendering of this object

    Definition Classes
    Renderable
  46. val second: Int

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

    Permalink
    Definition Classes
    AnyRef
  48. def toIsoDateString: String

    Permalink

    yyyy-mm-dd

  49. def toIsoDateTimeString: String

    Permalink

    yyyy-mm-ddThh:mm:ss

  50. def toIsoLikeDateTimeString: String

    Permalink

    yyyy-mm-dd hh:mm:ss

  51. def toRfc1123DateTimeString: String

    Permalink

    RFC1123 date string, e.g.

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

  52. def toString(): String

    Permalink

    yyyy-mm-ddThh:mm:ss

    yyyy-mm-ddThh:mm:ss

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

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

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

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

    Permalink
  57. def weekdayStr: String

    Permalink

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

  58. val year: Int

    Permalink

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