codes.reactive.scalatime

OffsetDateTime

object OffsetDateTime

Factory object for obtaining OffsetDateTime instances.

Source
OffsetDateTime.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OffsetDateTime
  2. AnyRef
  3. 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. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. val Max: scalatime.OffsetDateTime

    The maximum supported OffsetDateTime, '+999999999-12-31T23:59:59.999999999-18:00' - or 'far future'.

  5. val Min: scalatime.OffsetDateTime

    The minimum supported OffsetDateTime, '-999999999-01-01T00:00:00+18:00' - or 'far past'.

  6. def apply(dateTime: scalatime.LocalDateTime, zone: scalatime.ZoneOffset): scalatime.OffsetDateTime

    Obtains an OffsetDateTime from the specified LocalDateTime and ZoneOffset.

  7. def apply(date: scalatime.LocalDate, time: scalatime.LocalTime, zone: scalatime.ZoneOffset): scalatime.OffsetDateTime

    Obtains an OffsetDateTime from the specified LocalDate, LocalTime and ZoneOffset.

  8. def apply(clock: scalatime.Clock): scalatime.OffsetDateTime

    Obtains an OffsetDateTime by querying the specified clock for the current time.

  9. def apply(): scalatime.OffsetDateTime

    Obtains an OffsetDateTime by querying the current system clock at UTC for the current date.

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def from(from: scalatime.TemporalAccessor): Try[scalatime.OffsetDateTime]

    Tries to query a Temporal instance to obtain an OffsetDateTime.

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

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

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

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

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

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

    Definition Classes
    AnyRef
  22. def of(year: Int, month: scalatime.Month, day: Int, hour: Int, minute: Int, second: Int, nano: Int, zone: scalatime.ZoneOffset): Try[scalatime.OffsetDateTime]

    Tries to obtain an OffsetDateTime from a year, Month, day, hour, minute, second, nanosecond and offset.

    Tries to obtain an OffsetDateTime from a year, Month, day, hour, minute, second, nanosecond and offset. The values of all fields must be within range, and the day must be valid for the year and month.

  23. def of(year: Int, month: Int, day: Int, hour: Int, minute: Int, second: Int, nano: Int, zone: scalatime.ZoneOffset): Try[scalatime.OffsetDateTime]

    Tries to obtain an OffsetDateTime from a year, month, day, hour, minute, second, nanosecond and offset.

    Tries to obtain an OffsetDateTime from a year, month, day, hour, minute, second, nanosecond and offset. The values of all fields must be within range, and the day must be valid for the year and month.

  24. def parse(text: String, formatter: scalatime.DateTimeFormatter): Try[scalatime.OffsetDateTime]

    Tries to obtain an OffsetDateTime from valid text formatted according to the provided formatter.

  25. def parse(text: String): Try[scalatime.OffsetDateTime]

    Tries to obtain an OffsetDateTime from text formatted according to format.DateTimeFormatter.Iso.OffsetDateTime.

    Tries to obtain an OffsetDateTime from text formatted according to format.DateTimeFormatter.Iso.OffsetDateTime.

    text

    the text to parse such as "2007-12-03T10:15:30+01:00"

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

    Definition Classes
    AnyRef
  27. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped