Class/Object

scalafx.collections

ObservableArray

Related Docs: object ObservableArray | package collections

Permalink

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.

Source
ObservableArray.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
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
Visibility
  1. Public
  2. All

Instance Constructors

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

    Permalink

Type Members

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

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

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

    Permalink
    Definition Classes
    TraversableLike

Abstract Value Members

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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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]

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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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]

    Permalink

    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]

    Permalink

    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: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink

    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.

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

    Permalink

    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.

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

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

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

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

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

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

    Permalink

    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
  11. def +=(elem1: V, elem2: V, elems: V*): ObservableArray.this.type

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

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  16. def addString(b: StringBuilder): StringBuilder

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

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

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

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

    Permalink

    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.

  21. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  22. def canEqual(that: Any): Boolean

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

    Permalink

    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
  24. def clone(): AnyRef

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

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

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

    Permalink
    Definition Classes
    SeqLike
  28. def contains[A1 >: V](elem: A1): Boolean

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    ArrayLike
  37. val delegate: D

    Permalink

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

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

    Permalink
    Definition Classes
    SeqLike → GenSeqLike
  39. def distinct: T

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

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

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

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

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

    Permalink

    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.

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

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

    Permalink

    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
  47. def exists(p: (V) ⇒ Boolean): Boolean

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    IterableLike
  61. def hasDefiniteSize: Boolean

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

    Permalink

    returns

    The delegate hashcode

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    GenSeqLike
  71. def indices: Range

    Permalink
    Definition Classes
    SeqLike
  72. def init: T

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

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

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

    Permalink
    Definition Classes
    GenSeqLike
  76. def isEmpty: Boolean

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

    Permalink
    Definition Classes
    Any
  78. final def isTraversableAgain: Boolean

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

    Permalink
    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  80. def last: V

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

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

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

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

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

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

    Permalink
    Definition Classes
    GenSeqLike
  87. def lastOption: Option[V]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  88. def length: Int

    Permalink

    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
  89. def lengthCompare(len: Int): Int

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

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

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. def mkString: String

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

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

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

    Permalink
    Definition Classes
    AnyRef
  100. def nonEmpty: Boolean

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

    Permalink
    Definition Classes
    AnyRef
  102. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  103. def onChange(op: ⇒ Unit): Subscription

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    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
  106. def onInvalidate(op: (Observable) ⇒ Unit): Subscription

    Permalink

    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
  107. def padTo[B >: V, That](len: Int, elem: B)(implicit bf: CanBuildFrom[T, B, That]): That

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def repr: T

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

    Permalink

    Produces collection from builder.

    Produces collection from builder.

    returns

    This ObservableArray.

    Definition Classes
    ObservableArray → Builder
  123. def reverse: T

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

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

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

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

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

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

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

    Permalink
    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.

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

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

    Permalink

    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
  133. def size: Int

    Permalink

    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
  134. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    GenSeqLike
  148. def stringPrefix: String

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

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

    Permalink
    Definition Classes
    AnyRef
  151. def tail: T

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

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

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

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

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

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

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

    Permalink

    Translate this observable array to a regular array.

    Translate this observable array to a regular array.

    returns

    Regular array containing this array's contents.

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

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

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

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

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

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

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  165. def toList: List[V]

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

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

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

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

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

    Permalink

    returns

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

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

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  172. def toVector: Vector[V]

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

    Permalink

    Shrinks capacity to current length of data in this array.

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

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

    Permalink

    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.

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike

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