final case class DateTime extends javadsl.model.DateTime with Ordered[DateTime] with Renderable with Product with Serializable

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

Source
DateTime.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DateTime
  2. Serializable
  3. Product
  4. Equals
  5. Renderable
  6. Ordered
  7. Comparable
  8. DateTime
  9. AnyRef
  10. Any
Implicitly
  1. by orderingToOrdered
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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 ->[B](y: B): (DateTime, B)
    Implicit
    This member is added by an implicit conversion from DateTime toArrowAssoc[DateTime] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. def <(that: DateTime): Boolean
    Definition Classes
    Ordered
  7. def <=(that: DateTime): Boolean
    Definition Classes
    Ordered
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def >(that: DateTime): Boolean
    Definition Classes
    Ordered
  10. def >=(that: DateTime): Boolean
    Definition Classes
    Ordered
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. val clicks: Long

    Returns this instant as "clicks", i.e.

    Returns this instant as "clicks", i.e. as milliseconds since January 1, 1970, 00:00:00 GMT

    Definition Classes
    DateTimeDateTime
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  14. def compare(that: DateTime): Int
    Definition Classes
    DateTime → Ordered
  15. def compareTo(that: DateTime): Int
    Definition Classes
    Ordered → Comparable
  16. val day: Int

    Returns the day of this instant in GMT.

    Returns the day of this instant in GMT.

    Definition Classes
    DateTimeDateTime
  17. def ensuring(cond: (DateTime) => Boolean, msg: => Any): DateTime
    Implicit
    This member is added by an implicit conversion from DateTime toEnsuring[DateTime] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: (DateTime) => Boolean): DateTime
    Implicit
    This member is added by an implicit conversion from DateTime toEnsuring[DateTime] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean, msg: => Any): DateTime
    Implicit
    This member is added by an implicit conversion from DateTime toEnsuring[DateTime] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean): DateTime
    Implicit
    This member is added by an implicit conversion from DateTime toEnsuring[DateTime] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(obj: Any): Boolean
    Definition Classes
    DateTime → Equals → AnyRef → Any
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  24. def hashCode(): Int
    Definition Classes
    DateTime → AnyRef → Any
  25. val hour: Int

    Returns the hour of this instant in GMT.

    Returns the hour of this instant in GMT.

    Definition Classes
    DateTimeDateTime
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. val isLeapYear: Boolean

    Returns if this instant interpreted as a Date in GMT belongs to a leap year.

    Returns if this instant interpreted as a Date in GMT belongs to a leap year.

    Definition Classes
    DateTimeDateTime
  28. def minus(millis: Long): DateTime

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

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

    Definition Classes
    DateTimeDateTime
  29. val minute: Int

    Returns the minute of this instant in GMT.

    Returns the minute of this instant in GMT.

    Definition Classes
    DateTimeDateTime
  30. val month: Int

    Returns the month of this instant in GMT.

    Returns the month of this instant in GMT.

    Definition Classes
    DateTimeDateTime
  31. def monthStr(): String

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

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

    Definition Classes
    DateTimeDateTime
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  35. def plus(millis: Long): DateTime

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

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

    Definition Classes
    DateTimeDateTime
  36. def productElementNames: Iterator[String]
    Definition Classes
    Product
  37. def render[R <: Rendering](r: R): r.type

    yyyy-mm-ddThh:mm:ss

    yyyy-mm-ddThh:mm:ss

    Definition Classes
    DateTime → Renderable
  38. def renderIsoDate[R <: Rendering](r: R): r.type

    yyyy-mm-dd

  39. def renderIsoDateTimeString[R <: Rendering](r: R): r.type

    yyyy-mm-ddThh:mm:ss

  40. def renderIsoLikeDateTimeString[R <: Rendering](r: R): r.type

    yyyy-mm-dd hh:mm:ss

  41. def renderRfc1123DateTimeString[R <: Rendering](r: R): r.type

    RFC1123 date string, e.g.

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

  42. val second: Int

    Returns the second of this instant in GMT.

    Returns the second of this instant in GMT.

    Definition Classes
    DateTimeDateTime
  43. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  44. def toIsoDateString(): String

    yyyy-mm-dd

    yyyy-mm-dd

    Definition Classes
    DateTimeDateTime
  45. def toIsoDateTimeString(): String

    yyyy-mm-ddThh:mm:ss

    yyyy-mm-ddThh:mm:ss

    Definition Classes
    DateTimeDateTime
  46. def toIsoLikeDateTimeString(): String

    yyyy-mm-dd hh:mm:ss

    yyyy-mm-dd hh:mm:ss

    Definition Classes
    DateTimeDateTime
  47. def toRfc1123DateTimeString(): String

    RFC1123 date string, e.g.

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

    Definition Classes
    DateTimeDateTime
  48. def toString(): String

    yyyy-mm-ddThh:mm:ss

    yyyy-mm-ddThh:mm:ss

    Definition Classes
    DateTime → AnyRef → Any
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. val weekday: Int

    Returns the weekday of this instant in GMT.

    Returns the weekday of this instant in GMT. Sunday is 0, Monday is 1, etc.

    Definition Classes
    DateTimeDateTime
  53. def weekdayStr(): String

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

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

    Definition Classes
    DateTimeDateTime
  54. val year: Int

    Returns the year of this instant in GMT.

    Returns the year of this instant in GMT.

    Definition Classes
    DateTimeDateTime

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from DateTime toany2stringadd[DateTime] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (dateTime: any2stringadd[DateTime]).+(other)
    Definition Classes
    any2stringadd
  2. def <(that: DateTime): Boolean
    Implicit
    This member is added by an implicit conversion from DateTime toOrdered[DateTime] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (dateTime: Ordered[DateTime]).<(that)
    Definition Classes
    Ordered
  3. def <=(that: DateTime): Boolean
    Implicit
    This member is added by an implicit conversion from DateTime toOrdered[DateTime] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (dateTime: Ordered[DateTime]).<=(that)
    Definition Classes
    Ordered
  4. def >(that: DateTime): Boolean
    Implicit
    This member is added by an implicit conversion from DateTime toOrdered[DateTime] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (dateTime: Ordered[DateTime]).>(that)
    Definition Classes
    Ordered
  5. def >=(that: DateTime): Boolean
    Implicit
    This member is added by an implicit conversion from DateTime toOrdered[DateTime] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (dateTime: Ordered[DateTime]).>=(that)
    Definition Classes
    Ordered
  6. def compare(that: DateTime): Int
    Implicit
    This member is added by an implicit conversion from DateTime toOrdered[DateTime] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (dateTime: Ordered[DateTime]).compare(that)
    Definition Classes
    Ordered
  7. def compareTo(that: DateTime): Int
    Implicit
    This member is added by an implicit conversion from DateTime toOrdered[DateTime] performed by method orderingToOrdered in scala.math.Ordered.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (dateTime: Ordered[DateTime]).compareTo(that)
    Definition Classes
    Ordered → Comparable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from DateTime toStringFormat[DateTime] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (DateTime, B)
    Implicit
    This member is added by an implicit conversion from DateTime toArrowAssoc[DateTime] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Renderable

Inherited from Ordered[DateTime]

Inherited from Comparable[DateTime]

Inherited from javadsl.model.DateTime

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion orderingToOrdered fromDateTime to Ordered[DateTime]

Inherited by implicit conversion any2stringadd fromDateTime to any2stringadd[DateTime]

Inherited by implicit conversion StringFormat fromDateTime to StringFormat[DateTime]

Inherited by implicit conversion Ensuring fromDateTime to Ensuring[DateTime]

Inherited by implicit conversion ArrowAssoc fromDateTime to ArrowAssoc[DateTime]

Ungrouped