Instance Constructors
-
new
Interval
(start: Int, end: Int)
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
<
(that: Interval): Boolean
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
def
>
(that: Interval): Boolean
-
def
>>
(shift: Int): Interval
-
def
asInstanceOf
[T0]
: T0
-
def
before
(that: Interval): Boolean
-
def
canEqual
(arg0: Any): Boolean
-
def
clone
(): AnyRef
-
def
contains
(that: Interval): Boolean
-
def
during
(that: Interval): Boolean
-
val
end
: Int
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
finishes
(that: Interval): Boolean
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
val
isEmpty
: Boolean
-
def
isInstanceOf
[T0]
: Boolean
-
def
meets
(that: Interval): Boolean
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
overlaps
(that: Interval): Boolean
-
def
productArity
: Int
-
def
productElement
(arg0: Int): Any
-
def
productIterator
: Iterator[Any]
-
def
productPrefix
: String
-
val
start
: Int
-
def
starts
(that: Interval): Boolean
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
lazy val
toString
: String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Deprecated Value Members
-
def
productElements
: Iterator[Any]
Inherited from Serializable
Inherited from Serializable
Inherited from Product
Inherited from Equals
Inherited from AnyRef
Inherited from Any
Interval: left-inclusive, right-exclusive (priority). Implements Allen's interval algebra. Natural integers only, since it corresponds to indices in Strings.
Beginning of the interval, inclusive.
End of the interval, exclusive (has priority, i.e.
[0, 0)
is considered empty).