Packages

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

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

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 times(times: Int): Duration
  23. def toFormattedString: String
  24. def toString(): String
    Definition Classes
    Duration → AnyRef → Any