Packages

case class Duration(millis: Long) extends Product with Serializable

Source
Duration.scala
Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Duration
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Duration(millis: Long)

Value Members

  1. def *(times: Int): Duration
  2. def +(that: Duration): Duration
  3. def -(that: Duration): Duration
  4. def /(that: Duration): Double
  5. def <(that: Duration): Boolean
  6. def <=(that: Duration): Boolean
  7. def >(that: Duration): Boolean
  8. def >=(that: Duration): Boolean
  9. def div(that: Duration): Double
  10. def greater(that: Duration): Boolean
  11. def greaterEq(that: Duration): Boolean
  12. def isMultipleOf(that: Duration): Boolean
  13. def isZero: Boolean
  14. def less(that: Duration): Boolean
  15. def lessEq(that: Duration): Boolean
  16. def max(that: Duration): Duration
  17. def milliseconds: Long
  18. def min(that: Duration): Duration
  19. def minus(that: Duration): Duration
  20. def plus(that: Duration): Duration
  21. def prettyPrint: String
  22. def productElementNames: Iterator[String]
    Definition Classes
    Product
  23. def times(times: Int): Duration
  24. def toFormattedString: String
  25. def toString(): String
    Definition Classes
    Duration → AnyRef → Any