sealed trait TimeDomain extends AnyRef
This trait represents the definition of a time series' domain
By convention, a TimeDomain is a set of timestamps (Long) inclusive on its left,
and exclusive on its right.
- Alphabetic
 - By Inheritance
 
- TimeDomain
 - AnyRef
 - Any
 
- Hide All
 - Show All
 
- Public
 - All
 
Abstract Value Members
-   abstract  def contains(p: Long): Boolean
Checks if the timestamp given is part of the domain
Checks if the timestamp given is part of the domain
- p
 The timestamp to check
- returns
 trueif the timestamp is part of the domain,falseotherwise
 -   abstract  def intersect(other: TimeDomain): TimeDomain
Returns the intersection of two domains
Returns the intersection of two domains
- other
 The other domain
- returns
 The intersection of the two domains
 -   abstract  def looseUnion(other: TimeDomain): TimeDomain
Returns the union of two domains without considering potential //holes// in it
Returns the union of two domains without considering potential //holes// in it
Using '#' if the element is in the domain and '-' otherwise, a union would be
###----- ------#####---##
The looseUnion of these two domains is "########".
- other
 The other domain
- returns
 The union of these two domains
 -   abstract  def size: Long
- returns
 The size of the time-domain
 
Concrete Value Members
-   final  def !=(arg0: Any): Boolean
- Definition Classes
 - AnyRef → Any
 
 -   final  def ##(): Int
- Definition Classes
 - AnyRef → Any
 
 -   final  def ==(arg0: Any): Boolean
- Definition Classes
 - AnyRef → Any
 
 -   final  def asInstanceOf[T0]: T0
- Definition Classes
 - Any
 
 -    def clone(): AnyRef
- Attributes
 - protected[java.lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.CloneNotSupportedException]) @native()
 
 -   final  def eq(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef
 
 -    def equals(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef → Any
 
 -    def finalize(): Unit
- Attributes
 - protected[java.lang]
 - Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.Throwable])
 
 -   final  def getClass(): Class[_ <: AnyRef]
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 -    def hashCode(): Int
- Definition Classes
 - AnyRef → Any
 - Annotations
 - @native()
 
 -   final  def isInstanceOf[T0]: Boolean
- Definition Classes
 - Any
 
 -   final  def ne(arg0: AnyRef): Boolean
- Definition Classes
 - AnyRef
 
 -   final  def notify(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @native()
 
 -   final  def notifyAll(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @native()
 
 -   final  def synchronized[T0](arg0: => T0): T0
- Definition Classes
 - AnyRef
 
 -    def toString(): String
- Definition Classes
 - AnyRef → Any
 
 -   final  def wait(): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -   final  def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException])
 
 -   final  def wait(arg0: Long): Unit
- Definition Classes
 - AnyRef
 - Annotations
 - @throws(classOf[java.lang.InterruptedException]) @native()