scalafx.collections

ObservableArray

abstract class ObservableArray[V, T <: ObservableArray[V, T, D], D <: javafx.collections.ObservableArray[D]] extends ArrayLike[V, T] with Builder[V, T] with Observable with SFXDelegate[D]

Abstract ObservableArray base class.

Linear Supertypes
Observable, SFXDelegate[D], Builder[V, T], Growable[V], Clearable, ArrayLike[V, T], IndexedSeqOptimized[V, T], IndexedSeqOptimized[V, T], IndexedSeqLike[V, T], IndexedSeqLike[V, T], SeqLike[V, T], GenSeqLike[V, T], IterableLike[V, T], GenIterableLike[V, T], TraversableLike[V, T], GenTraversableLike[V, T], Parallelizable[V, ParSeq[V]], TraversableOnce[V], GenTraversableOnce[V], FilterMonadic[V, T], HasNewBuilder[V, T], Equals, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ObservableArray
  2. Observable
  3. SFXDelegate
  4. Builder
  5. Growable
  6. Clearable
  7. ArrayLike
  8. IndexedSeqOptimized
  9. IndexedSeqOptimized
  10. IndexedSeqLike
  11. IndexedSeqLike
  12. SeqLike
  13. GenSeqLike
  14. IterableLike
  15. GenIterableLike
  16. TraversableLike
  17. GenTraversableLike
  18. Parallelizable
  19. TraversableOnce
  20. GenTraversableOnce
  21. FilterMonadic
  22. HasNewBuilder
  23. Equals
  24. AnyRef
  25. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ObservableArray(delegate: D)(implicit arg0: ClassTag[V])

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable

    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID( 1756321872811029277L )
  2. type Self = T

    Attributes
    protected
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]

    Definition Classes
    TraversableLike

Abstract Value Members

  1. abstract def addAll(src: T, srcIdx: Int, length: Int): Unit

    Append portion of given regular array to the end of this array.

    Append portion of given regular array to the end of this array.

    Capacity is increased, if necessary, to match the new size of the data.

    src

    Elements to be appended.

    srcIdx

    Start position in the src array.

    length

    Number of data elements to be appended.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if copying would cause access out of src array bounds.

    java.lang.ArrayStoreException

    if element in src array could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if src is null.

  2. abstract def addAll(src: Array[V], srcIdx: Int, length: Int): Unit

    Append portion of given regular array to the end of this array.

    Append portion of given regular array to the end of this array.

    Capacity is increased, if necessary, to match the new size of the data.

    src

    Elements to be appended.

    srcIdx

    Start position in the src array.

    length

    Number of data elements to be appended.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if copying would cause access out of src array bounds.

    java.lang.ArrayStoreException

    if element in src array could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if src is null.

  3. abstract def addAll(elems: V*): Unit

    Append given elements to the end of this array.

    Append given elements to the end of this array.

    Capacity is increased, if necessary, to match the new size of the data.

    elems

    Elements to be appended.

    Exceptions thrown
    java.lang.ArrayStoreException

    if element in elements could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if elements is null.

  4. abstract def addAll(src: T): Unit

    Append given observable array to the end of this array.

    Append given observable array to the end of this array.

    Capacity is increased, if necessary, to match the new size of the data.

    src

    Elements to be appended.

    Exceptions thrown
    java.lang.ArrayStoreException

    if element in src array could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if src is null.

  5. abstract def copyTo(srcIdx: Int, dest: T, destIdx: Int, length: Int): Unit

    Copy specified portion of this observable array to dest observable array.

    Copy specified portion of this observable array to dest observable array.

    srcIdx

    Start position in this array.

    dest

    Array into which the portion of this array is to be copied.

    destIdx

    Start position in the dest array.

    length

    Number of data elements to be copied.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if copying would cause access out of either array bounds.

    java.lang.ArrayStoreException

    if element in this array could not be stored in dest array due to a type mismatch.

    java.lang.NullPointerException

    if dest is null.

  6. abstract def copyTo(srcIdx: Int, dest: Array[V], destIdx: Int, length: Int): Unit

    Copy specified portion of this observable array to dest regular array.

    Copy specified portion of this observable array to dest regular array.

    srcIdx

    Start position in this array.

    dest

    Array into which the portion of this array is to be copied.

    destIdx

    Start position in the dest array.

    length

    Number of data elements to be copied.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if copying would cause access out of either array bounds.

    java.lang.ArrayStoreException

    if element in this array could not be stored in dest array due to a type mismatch.

    java.lang.NullPointerException

    if dest is null.

  7. abstract def get(idx: Int): V

    Select the element at idx in the array.

    Select the element at idx in the array.

    idx

    Index of selected element.

    returns

    Element at given idx.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if idx does not satisfy 0 <= idx < length.

  8. abstract def newBuilder: Builder[V, T]

    Attributes
    protected[this]
    Definition Classes
    TraversableLike → HasNewBuilder
  9. abstract def set(destIdx: Int, src: T, srcIdx: Int, length: Int): Unit

    Copy a portion of given observable array into this array, replacing affected contents.

    Copy a portion of given observable array into this array, replacing affected contents.

    destIdx

    Start position in this array.

    src

    Array containing data to be copied.

    srcIdx

    Start position in src array.

    length

    Number of data elements to be copied.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if copying would cause access out of array bounds.

    java.lang.ArrayStoreException

    if element in src could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if src is null.

  10. abstract def set(destIdx: Int, src: Array[V], srcIdx: Int, length: Int): Unit

    Copy a portion of given regular array into this array, replacing affected contents.

    Copy a portion of given regular array into this array, replacing affected contents.

    destIdx

    Start position in this array.

    src

    Array containing data to be copied.

    srcIdx

    Start position in src array.

    length

    Number of data elements to be copied.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if copying would cause access out of array bounds.

    java.lang.ArrayStoreException

    if element in src could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if src is null.

  11. abstract def set(idx: Int, value: V): Unit

    Set the element at idx in the array to value.

    Set the element at idx in the array to value.

    idx

    Index of element to be changed.

    value

    New value for element at idx.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if idx does not satisfy 0 <= idx < length.

  12. abstract def setAll(src: T, srcIdx: Int, length: Int): Unit

    Replace the contents of this array with portion of the given observable array.

    Replace the contents of this array with portion of the given observable array.

    Capacity is increased, if necessary, to match the new size of the data.

    src

    Array to replace contents this array.

    srcIdx

    Start position in the src array.

    length

    Number of data elements to be copied.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if copying would cause access out of array bounds.

    java.lang.ArrayStoreException

    if element in src could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if src is null.

  13. abstract def setAll(src: Array[V], srcIdx: Int, length: Int): Unit

    Replace the contents of this array with portion of the given regular array.

    Replace the contents of this array with portion of the given regular array.

    Capacity is increased, if necessary, to match the new size of the data.

    src

    Array to replace contents this array.

    srcIdx

    Start position in the src array.

    length

    Number of data elements to be copied.

    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if copying would cause access out of array bounds.

    java.lang.ArrayStoreException

    if element in src could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if src is null.

  14. abstract def setAll(src: T): Unit

    Replace the contents of this array with the given observable array.

    Replace the contents of this array with the given observable array.

    Capacity is increased, if necessary, to match the new size of the data.

    src

    Array to replace contents this array.

    Exceptions thrown
    java.lang.ArrayStoreException

    if element in src could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if src is null.

  15. abstract def setAll(elems: V*): Unit

    Replace the contents of this array with the given elements.

    Replace the contents of this array with the given elements.

    Capacity is increased, if necessary, to match the new size of the data.

    elems

    New contents of this array.

    Exceptions thrown
    java.lang.ArrayStoreException

    if element in elements could not be stored in this array due to a type mismatch.

    java.lang.NullPointerException

    if elements is null.

  16. abstract def toArray(srcIdx: Int, dest: Array[V], length: Int): Array[V]

    Write a portion of this array's contents into the specified array, if it is large enough, or a new array if it is not.

    Write a portion of this array's contents into the specified array, if it is large enough, or a new array if it is not.

    srcIdx

    Start position in this array.

    dest

    Array into which this array will be written, if large enough to hold this array's contents. If null, this argument is ignored.

    length

    Number of data elements to be copied.

    returns

    The dest array if it is large enough to hold this array's data, or a new array, containing this array's copied contents.

    Exceptions thrown
    java.lang.ArrayStoreException

    if element in src could not be stored in this array due to a type mismatch.

  17. abstract def toArray(dest: Array[V]): Array[V]

    Write the contents of this array into the specified array, if it is large enough, or a new array if it is not.

    Write the contents of this array into the specified array, if it is large enough, or a new array if it is not.

    dest

    Array into which this array will be written, if large enough to hold this array's contents. If null, this argument is ignored.

    returns

    The dest array if it is large enough to hold this array's data, or a new array, containing this array's copied contents.

    Exceptions thrown
    java.lang.ArrayStoreException

    if element in src could not be stored in this array due to a type mismatch.

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++(src: T): T

    Append another observable array to this array.

    Append another observable array to this array.

    src

    Array to be appended to this array.

    returns

    This array, expanded to contain the indicated array.

  5. def ++(src: Array[V]): T

    Append another array to this array.

    Append another array to this array.

    src

    Array to be appended to this array.

    returns

    This array, expanded to contain the indicated array.

  6. def ++[B >: V, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  7. def ++:[B >: V, That](that: Traversable[B])(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    TraversableLike
  8. def ++:[B >: V, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    TraversableLike
  9. def ++=(xs: TraversableOnce[V]): ObservableArray.this.type

    Definition Classes
    Growable
  10. def +:[B >: V, That](elem: B)(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  11. def +=(elem: V): ObservableArray.this.type

    Append new element to this ObservableArray.

    Append new element to this ObservableArray.

    elem

    Element to be added to end of this array.

    returns

    This ObservableArray.

    Definition Classes
    ObservableArray → Builder → Growable
  12. def +=(elem1: V, elem2: V, elems: V*): ObservableArray.this.type

    Definition Classes
    Growable
  13. def /:[B](z: B)(op: (B, V) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  14. def :+[B >: V, That](elem: B)(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  15. def :\[B](z: B)(op: (V, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  16. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  18. def addString(b: StringBuilder): StringBuilder

    Definition Classes
    TraversableOnce
  19. def addString(b: StringBuilder, sep: String): StringBuilder

    Definition Classes
    TraversableOnce
  20. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Definition Classes
    TraversableOnce
  21. def aggregate[B](z: B)(seqop: (B, V) ⇒ B, combop: (B, B) ⇒ B): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def apply(idx: Int): V

    Select an element by its index in the array.

    Select an element by its index in the array.

    idx

    Index of selected element.

    returns

    Element at given idx.

    Definition Classes
    ObservableArray → SeqLike → GenSeqLike
    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if idx does not satisfy 0 <= idx < length.

  23. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  24. def canEqual(that: Any): Boolean

    Definition Classes
    IterableLike → Equals
  25. def clear(): Unit

    Empty array, clearing builder contents, resizing it to zero.

    Empty array, clearing builder contents, resizing it to zero.

    Capacity is unchanged.

    Definition Classes
    ObservableArray → Builder → Growable → Clearable
  26. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. def collect[B, That](pf: PartialFunction[V, B])(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  28. def collectFirst[B](pf: PartialFunction[V, B]): Option[B]

    Definition Classes
    TraversableOnce
  29. def combinations(n: Int): Iterator[T]

    Definition Classes
    SeqLike
  30. def contains(elem: Any): Boolean

    Definition Classes
    SeqLike
  31. def containsSlice[B](that: GenSeq[B]): Boolean

    Definition Classes
    SeqLike
  32. def copyToArray[B >: V](xs: Array[B], start: Int, len: Int): Unit

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  33. def copyToArray[B >: V](xs: Array[B]): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  34. def copyToArray[B >: V](xs: Array[B], start: Int): Unit

    Definition Classes
    TraversableOnce → GenTraversableOnce
  35. def copyToBuffer[B >: V](dest: Buffer[B]): Unit

    Definition Classes
    TraversableOnce
  36. def corresponds[B](that: GenSeq[B])(p: (V, B) ⇒ Boolean): Boolean

    Definition Classes
    SeqLike → GenSeqLike
  37. def count(p: (V) ⇒ Boolean): Int

    Definition Classes
    TraversableOnce → GenTraversableOnce
  38. def deep: IndexedSeq[Any]

    Definition Classes
    ArrayLike
  39. val delegate: D

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    ObservableArraySFXDelegate
  40. def diff[B >: V](that: GenSeq[B]): T

    Definition Classes
    SeqLike → GenSeqLike
  41. def distinct: T

    Definition Classes
    SeqLike → GenSeqLike
  42. def drop(n: Int): T

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  43. def dropRight(n: Int): T

    Definition Classes
    IndexedSeqOptimized → IterableLike
  44. def dropWhile(p: (V) ⇒ Boolean): T

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  45. def endsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  46. def ensureCapacity(capacity: Int): Unit

    Grow array capacity if currently smaller than given capacity; do nothing otherwise.

    Grow array capacity if currently smaller than given capacity; do nothing otherwise.

    capacity

    Required capacity.

  47. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  48. def equals(ref: Any): Boolean

    Verifies if a object is equals to this delegate.

    Verifies if a object is equals to this delegate.

    ref

    Object to be compared.

    returns

    if the other object is equals to this delegate or not.

    Definition Classes
    SFXDelegate → AnyRef → Any
  49. def exists(p: (V) ⇒ Boolean): Boolean

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  50. def filter(p: (V) ⇒ Boolean): T

    Definition Classes
    TraversableLike → GenTraversableLike
  51. def filterNot(p: (V) ⇒ Boolean): T

    Definition Classes
    TraversableLike → GenTraversableLike
  52. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  53. def find(p: (V) ⇒ Boolean): Option[V]

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  54. def flatMap[B, That](f: (V) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  55. def fold[A1 >: V](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  56. def foldLeft[B](z: B)(op: (B, V) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  57. def foldRight[B](z: B)(op: (V, B) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  58. def forall(p: (V) ⇒ Boolean): Boolean

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  59. def foreach[U](f: (V) ⇒ U): Unit

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  60. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  61. def groupBy[K](f: (V) ⇒ K): Map[K, T]

    Definition Classes
    TraversableLike → GenTraversableLike
  62. def grouped(size: Int): Iterator[T]

    Definition Classes
    IterableLike
  63. def hasDefiniteSize: Boolean

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  64. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  65. def head: V

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  66. def headOption: Option[V]

    Definition Classes
    TraversableLike → GenTraversableLike
  67. def indexOf[B >: V](elem: B, from: Int): Int

    Definition Classes
    GenSeqLike
  68. def indexOf[B >: V](elem: B): Int

    Definition Classes
    GenSeqLike
  69. def indexOfSlice[B >: V](that: GenSeq[B], from: Int): Int

    Definition Classes
    SeqLike
  70. def indexOfSlice[B >: V](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  71. def indexWhere(p: (V) ⇒ Boolean, from: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  72. def indexWhere(p: (V) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  73. def indices: Range

    Definition Classes
    SeqLike
  74. def init: T

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  75. def inits: Iterator[T]

    Definition Classes
    TraversableLike
  76. def intersect[B >: V](that: GenSeq[B]): T

    Definition Classes
    SeqLike → GenSeqLike
  77. def isDefinedAt(idx: Int): Boolean

    Definition Classes
    GenSeqLike
  78. def isEmpty: Boolean

    Definition Classes
    IndexedSeqOptimized → SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  79. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  80. final def isTraversableAgain: Boolean

    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  81. def iterator: Iterator[V]

    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  82. def last: V

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  83. def lastIndexOf[B >: V](elem: B, end: Int): Int

    Definition Classes
    GenSeqLike
  84. def lastIndexOf[B >: V](elem: B): Int

    Definition Classes
    GenSeqLike
  85. def lastIndexOfSlice[B >: V](that: GenSeq[B], end: Int): Int

    Definition Classes
    SeqLike
  86. def lastIndexOfSlice[B >: V](that: GenSeq[B]): Int

    Definition Classes
    SeqLike
  87. def lastIndexWhere(p: (V) ⇒ Boolean, end: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  88. def lastIndexWhere(p: (V) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  89. def lastOption: Option[V]

    Definition Classes
    TraversableLike → GenTraversableLike
  90. def length: Int

    Retrieve length of data in this array.

    Retrieve length of data in this array.

    returns

    Length of data in this array.

    Definition Classes
    ObservableArray → SeqLike → GenSeqLike
  91. def lengthCompare(len: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike
  92. def map[B, That](f: (V) ⇒ B)(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  93. def mapResult[NewTo](f: (T) ⇒ NewTo): Builder[V, NewTo]

    Definition Classes
    Builder
  94. def max[B >: V](implicit cmp: Ordering[B]): V

    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def maxBy[B](f: (V) ⇒ B)(implicit cmp: Ordering[B]): V

    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def min[B >: V](implicit cmp: Ordering[B]): V

    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def minBy[B](f: (V) ⇒ B)(implicit cmp: Ordering[B]): V

    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. def mkString: String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  99. def mkString(sep: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  100. def mkString(start: String, sep: String, end: String): String

    Definition Classes
    TraversableOnce → GenTraversableOnce
  101. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  102. def nonEmpty: Boolean

    Definition Classes
    TraversableOnce → GenTraversableOnce
  103. final def notify(): Unit

    Definition Classes
    AnyRef
  104. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  105. def onChange(op: ⇒ Unit): Unit

    Add a listener function to Array 's changes.

    Add a listener function to Array 's changes.

    op

    Function that will handle this ObservableArray's modifications data, to be activated when some change is made.

    Note

    This function will not handle this array's modifications data. That is, it will be notified that an array it is associated with has changed, but not which array the which data within it was changed.

  106. def onChange(op: (T, Change) ⇒ Unit): Unit

    Add a listener function to Array 's changes.

    Add a listener function to Array 's changes.

    op

    Function that will handle this ObservableArray's modifications data, to be activated when some change is made.

    Note

    This function will handle this array's modifications data. That is, it will be notified which array has been modified and which array elements have been changed.

  107. def onInvalidate(op: ⇒ Unit): Subscription

    Adds a no argument function as a JavaFX InvalidationListener.

    Adds a no argument function as a JavaFX InvalidationListener. This function has no arguments because it will not handle invalidated values.

    op

    A Function with no arguments. It will be called when value was invalidated.

    returns

    A new scalafx.event.subscriptions.Subscription to remove JavaFX InvalidationListener.

    Definition Classes
    Observable
  108. def onInvalidate(op: (Observable) ⇒ Unit): Subscription

    Adds a function as a JavaFX InvalidationListener.

    Adds a function as a JavaFX InvalidationListener. This function has all arguments from invalidated method from InvalidationListener.

    op

    Function that receives a ScalaFX Observable. It will be called when value was invalidated.

    returns

    A new scalafx.event.subscriptions.Subscription to remove JavaFX InvalidationListener.

    Definition Classes
    Observable
  109. def padTo[B >: V, That](len: Int, elem: B)(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  110. def par: ParSeq[V]

    Definition Classes
    Parallelizable
  111. def parCombiner: Combiner[V, ParSeq[V]]

    Attributes
    protected[this]
    Definition Classes
    SeqLike → TraversableLike → Parallelizable
  112. def partition(p: (V) ⇒ Boolean): (T, T)

    Definition Classes
    TraversableLike → GenTraversableLike
  113. def patch[B >: V, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  114. def permutations: Iterator[T]

    Definition Classes
    SeqLike
  115. def prefixLength(p: (V) ⇒ Boolean): Int

    Definition Classes
    GenSeqLike
  116. def product[B >: V](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  117. def reduce[A1 >: V](op: (A1, A1) ⇒ A1): A1

    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def reduceLeft[B >: V](op: (B, V) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → TraversableOnce
  119. def reduceLeftOption[B >: V](op: (B, V) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  120. def reduceOption[A1 >: V](op: (A1, A1) ⇒ A1): Option[A1]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def reduceRight[B >: V](op: (V, B) ⇒ B): B

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  122. def reduceRightOption[B >: V](op: (V, B) ⇒ B): Option[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. def repr: T

    Definition Classes
    TraversableLike → GenTraversableLike
  124. def result(): T

    Produces collection from builder.

    Produces collection from builder.

    returns

    This ObservableArray.

    Definition Classes
    ObservableArray → Builder
  125. def reverse: T

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  126. def reverseIterator: Iterator[V]

    Definition Classes
    IndexedSeqOptimized → SeqLike
  127. def reverseMap[B, That](f: (V) ⇒ B)(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  128. def reversed: List[V]

    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  129. def sameElements[B >: V](that: GenIterable[B]): Boolean

    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  130. def scan[B >: V, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[T, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  131. def scanLeft[B, That](z: B)(op: (B, V) ⇒ B)(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
  132. def scanRight[B, That](z: B)(op: (V, B) ⇒ B)(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  133. def segmentLength(p: (V) ⇒ Boolean, from: Int): Int

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  134. def seq: IndexedSeq[V]

    Convert to a sequence in which all elements are implemented sequentially.

    Convert to a sequence in which all elements are implemented sequentially.

    returns

    Sequence with contents of this array.

    Definition Classes
    ObservableArray → IndexedSeqLike → GenSeqLike → Parallelizable → TraversableOnce → GenTraversableOnce
  135. def size: Int

    Retrieve length of data in this array.

    Retrieve length of data in this array.

    returns

    Length of data in this array.

    Definition Classes
    ObservableArray → SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  136. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit

    Definition Classes
    Builder
  137. def sizeHint(coll: TraversableLike[_, _]): Unit

    Definition Classes
    Builder
  138. def sizeHint(size: Int): Unit

    Definition Classes
    Builder
  139. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit

    Definition Classes
    Builder
  140. def slice(from: Int, until: Int): T

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  141. def sliding(size: Int, step: Int): Iterator[T]

    Definition Classes
    IterableLike
  142. def sliding(size: Int): Iterator[T]

    Definition Classes
    IterableLike
  143. def sortBy[B](f: (V) ⇒ B)(implicit ord: Ordering[B]): T

    Definition Classes
    SeqLike
  144. def sortWith(lt: (V, V) ⇒ Boolean): T

    Definition Classes
    SeqLike
  145. def sorted[B >: V](implicit ord: Ordering[B]): T

    Definition Classes
    SeqLike
  146. def span(p: (V) ⇒ Boolean): (T, T)

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  147. def splitAt(n: Int): (T, T)

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  148. def startsWith[B](that: GenSeq[B], offset: Int): Boolean

    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  149. def startsWith[B](that: GenSeq[B]): Boolean

    Definition Classes
    GenSeqLike
  150. def stringPrefix: String

    Definition Classes
    TraversableLike → GenTraversableLike
  151. def sum[B >: V](implicit num: Numeric[B]): B

    Definition Classes
    TraversableOnce → GenTraversableOnce
  152. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  153. def tail: T

    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  154. def tails: Iterator[T]

    Definition Classes
    TraversableLike
  155. def take(n: Int): T

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  156. def takeRight(n: Int): T

    Definition Classes
    IndexedSeqOptimized → IterableLike
  157. def takeWhile(p: (V) ⇒ Boolean): T

    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  158. def thisCollection: IndexedSeq[V]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  159. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, V, Col[V]]): Col[V]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  160. def toArray: Array[V]

    Translate this observable array to a regular array.

    Translate this observable array to a regular array.

    returns

    Regular array containing this array's contents.

  161. def toArray[B >: V](implicit arg0: ClassTag[B]): Array[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  162. def toBuffer[A1 >: V]: Buffer[A1]

    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  163. def toCollection(repr: T): IndexedSeq[V]

    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  164. def toIndexedSeq: IndexedSeq[V]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def toIterable: Iterable[V]

    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  166. def toIterator: Iterator[V]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  167. def toList: List[V]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  168. def toMap[T, U](implicit ev: <:<[V, (T, U)]): Map[T, U]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  169. def toSeq: Seq[V]

    Definition Classes
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  170. def toSet[B >: V]: Set[B]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  171. def toStream: Stream[V]

    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  172. def toString(): String

    returns

    Returns the original delegate's toString() adding a [SFX] prefix.

    Definition Classes
    SFXDelegate → AnyRef → Any
  173. def toTraversable: Traversable[V]

    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  174. def toVector: Vector[V]

    Definition Classes
    TraversableOnce → GenTraversableOnce
  175. def trimToSize(): Unit

    Shrinks capacity to current length of data in this array.

  176. def union[B >: V, That](that: GenSeq[B])(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  177. def update(idx: Int, value: V): Unit

    Set the element at idx in the array to value.

    Set the element at idx in the array to value.

    idx

    Index of element to be changed.

    value

    New value for element at idx.

    Definition Classes
    ObservableArray → IndexedSeqLike
    Exceptions thrown
    java.lang.ArrayIndexOutOfBoundsException

    if idx does not satisfy 0 <= idx < length.

  178. def updated[B >: V, That](index: Int, elem: B)(implicit bf: CanBuildFrom[T, B, That]): That

    Definition Classes
    SeqLike → GenSeqLike
  179. def view(from: Int, until: Int): IndexedSeqView[V, T]

    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  180. def view: IndexedSeqView[V, T]

    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  181. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  184. def withFilter(p: (V) ⇒ Boolean): FilterMonadic[V, T]

    Definition Classes
    TraversableLike → FilterMonadic
  185. def zip[A1 >: V, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[T, (A1, B), That]): That

    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  186. def zipAll[B, A1 >: V, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[T, (A1, B), That]): That

    Definition Classes
    IterableLike → GenIterableLike
  187. def zipWithIndex[A1 >: V, That](implicit bf: CanBuildFrom[T, (A1, Int), That]): That

    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike

Deprecated Value Members

  1. def /:\[A1 >: V](z: A1)(op: (A1, A1) ⇒ A1): A1

    Definition Classes
    GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use fold instead

Inherited from Observable

Inherited from SFXDelegate[D]

Inherited from Builder[V, T]

Inherited from Growable[V]

Inherited from Clearable

Inherited from ArrayLike[V, T]

Inherited from IndexedSeqOptimized[V, T]

Inherited from IndexedSeqOptimized[V, T]

Inherited from IndexedSeqLike[V, T]

Inherited from IndexedSeqLike[V, T]

Inherited from SeqLike[V, T]

Inherited from GenSeqLike[V, T]

Inherited from IterableLike[V, T]

Inherited from GenIterableLike[V, T]

Inherited from TraversableLike[V, T]

Inherited from GenTraversableLike[V, T]

Inherited from Parallelizable[V, ParSeq[V]]

Inherited from TraversableOnce[V]

Inherited from GenTraversableOnce[V]

Inherited from FilterMonadic[V, T]

Inherited from HasNewBuilder[V, T]

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped