codes.reactive.scalatime

LocalTime

object LocalTime

Factory object for obtaining LocalTime instances. *

Source
LocalTime.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LocalTime
  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.LocalTime

    The maximum supported LocalTime ('23:59:59.999999999' - just before midnight at the end of the day).

  5. val Midnight: scalatime.LocalTime

    The LocalTime of midnight at the start of the day, '00:00'.

  6. val Min: scalatime.LocalTime

    The minimum supported LocalTime ('00:00' - the time of midnight at the start of the day).

  7. val Noon: scalatime.LocalTime

    The LocalTime of noon in the middle of the day, '12:00'.

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

    Obtains a LocalTime by querying the specified clock for the current time.

  9. def apply(): scalatime.LocalTime

    Obtains a LocalTime by querying the current system clock at UTC for the current time.

  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.LocalTime]

    Tries to query a Temporal instance to obtain a LocalTime.

  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(hour: Int, minute: Int): Try[scalatime.LocalTime]

    Tries to obtain a LocalTime from an hour and minute, setting seconds and nanoseconds to zero.

    Tries to obtain a LocalTime from an hour and minute, setting seconds and nanoseconds to zero. Both values must be within range.

  23. def of(hour: Int, minute: Int, second: Int): Try[scalatime.LocalTime]

    Tries to obtain a LocalTime from an hour, minute and second, setting nanoseconds to zero.

    Tries to obtain a LocalTime from an hour, minute and second, setting nanoseconds to zero. All values must be within range.

  24. def of(hour: Int, minute: Int, second: Int, nano: Int): Try[scalatime.LocalTime]

    Tries to obtain a LocalTime from an hour, minute, second and nanosecond.

    Tries to obtain a LocalTime from an hour, minute, second and nanosecond. All values must be within range.

  25. def ofNano(nanoOfDay: Long): Try[scalatime.LocalTime]

    Tries to obtain a LocalTime instance from from a nanos-of-day value - from 0 to 24 * 60 * 60 * 1,000,000,000 - 1

  26. def ofSecond(secondOfDay: Long): Try[scalatime.LocalTime]

    Tries to obtain a LocalTime instance from from a second-of-day value - from 0 to 24 * 60 * 60 - 1

  27. def parse(text: String, formatter: scalatime.DateTimeFormatter): Try[scalatime.LocalTime]

    Tries to obtain a LocalTime instance from valid text formatted according to the provided formatter.

  28. def parse(text: String): Try[scalatime.LocalTime]

    Tries to obtain a LocalTime from text formatted according to format.DateTimeFormatter.Iso.LocalTime.

    Tries to obtain a LocalTime from text formatted according to format.DateTimeFormatter.Iso.LocalTime.

    text

    the text to parse such as "10:15:30"

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

    Definition Classes
    AnyRef
  30. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped