Packages

  • package root

    ScalaFX is a UI DSL written within the Scala Language that sits on top of JavaFX 2.x and and JavaFX 8.

    ScalaFX is a UI DSL written within the Scala Language that sits on top of JavaFX 2.x and and JavaFX 8. This means that every ScalaFX application is also a valid Scala application. By extension it supports full interoperability with Java and can run anywhere the Java Virtual Machine (JVM) and JavaFX 2.0 or JavaFX 8 are supported.

    Package Structure

    ScalaFX package structure corresponds to JavaFX package structure, for instance scalafx.animation corresponds to javafx.animation.

    Example Usage

    A basic ScalaFX application is created creating an object that is an instance of JFXApp. Following Java FX theatre metaphor, it contains a stage that contains a scene. A stage roughly corresponds to a window in a typical UI environment. The scene holds UI content presented to the user. In the example below, the content is a pane with a single label component.

    package hello
    
    import scalafx.application.JFXApp
    import scalafx.application.JFXApp.PrimaryStage
    import scalafx.geometry.Insets
    import scalafx.scene.Scene
    import scalafx.scene.control.Label
    import scalafx.scene.layout.BorderPane
    
    object HelloWorld extends JFXApp {
      stage = new PrimaryStage {
        title = "Hello"
        scene = new Scene {
          root = new BorderPane {
            padding = Insets(25)
            center = new Label("Hello World")
          }
        }
      }
    }
    Definition Classes
    root
  • package scalafx

    Base package for ScalaFX classes.

    Base package for ScalaFX classes.

    Definition Classes
    root
  • package collections

    Wraps javafx.collections package, adding Scala's collections features to original JavaFX collections.

    Wraps javafx.collections package, adding Scala's collections features to original JavaFX collections.

    Definition Classes
    scalafx
  • package transformation
    Definition Classes
    collections
  • CollectionIncludes
  • ObservableArray
  • ObservableBuffer
  • ObservableBufferBase
  • ObservableFloatArray
  • ObservableHashMap
  • ObservableHashSet
  • ObservableIntegerArray
  • ObservableMap
  • ObservableSet

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]

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])

Type Members

  1. class Elements extends AbstractIterator[A] with BufferedIterator[A] with Serializable
    Attributes
    protected
    Definition Classes
    IndexedSeqLike
    Annotations
    @SerialVersionUID()
  2. type Self = T
    Attributes
    protected[this]
    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: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. 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.

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

  5. def ++[B >: V, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++:[B >: V, That](that: Traversable[B])(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    TraversableLike
  7. def ++:[B >: V, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    TraversableLike
  8. def ++=(xs: TraversableOnce[V]): ObservableArray.this.type
    Definition Classes
    Growable
  9. def +:[B >: V, That](elem: B)(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  10. 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
  11. def +=(elem1: V, elem2: V, elems: V*): ObservableArray.this.type
    Definition Classes
    Growable
  12. def :+[B >: V, That](elem: B)(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  13. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  15. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  16. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  17. def aggregate[B](z: ⇒ B)(seqop: (B, V) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  18. 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.

  19. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  20. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  21. 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
  22. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  23. def collect[B, That](pf: PartialFunction[V, B])(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  24. def collectFirst[B](pf: PartialFunction[V, B]): Option[B]
    Definition Classes
    TraversableOnce
  25. def combinations(n: Int): Iterator[T]
    Definition Classes
    SeqLike
  26. def contains[A1 >: V](elem: A1): Boolean
    Definition Classes
    SeqLike
  27. def containsSlice[B](that: GenSeq[B]): Boolean
    Definition Classes
    SeqLike
  28. def copyToArray[B >: V](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  29. def copyToArray[B >: V](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  30. def copyToArray[B >: V](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  31. def copyToBuffer[B >: V](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  32. def corresponds[B](that: GenSeq[B])(p: (V, B) ⇒ Boolean): Boolean
    Definition Classes
    SeqLike → GenSeqLike
  33. def count(p: (V) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  34. def deep: IndexedSeq[Any]
    Definition Classes
    ArrayLike
  35. val delegate: D

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    ObservableArraySFXDelegate
  36. def diff[B >: V](that: GenSeq[B]): T
    Definition Classes
    SeqLike → GenSeqLike
  37. def distinct: T
    Definition Classes
    SeqLike → GenSeqLike
  38. def drop(n: Int): T
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  39. def dropRight(n: Int): T
    Definition Classes
    IndexedSeqOptimized → IterableLike
  40. def dropWhile(p: (V) ⇒ Boolean): T
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  41. def endsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  42. 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.

  43. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  44. 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
  45. def exists(p: (V) ⇒ Boolean): Boolean
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  46. def filter(p: (V) ⇒ Boolean): T
    Definition Classes
    TraversableLike → GenTraversableLike
  47. def filterNot(p: (V) ⇒ Boolean): T
    Definition Classes
    TraversableLike → GenTraversableLike
  48. def find(p: (V) ⇒ Boolean): Option[V]
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  49. def flatMap[B, That](f: (V) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  50. def fold[A1 >: V](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def foldLeft[B](z: B)(op: (B, V) ⇒ B): B
    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  52. def foldRight[B](z: B)(op: (V, B) ⇒ B): B
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  53. def forall(p: (V) ⇒ Boolean): Boolean
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  54. def foreach[U](f: (V) ⇒ U): Unit
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  55. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  56. def groupBy[K](f: (V) ⇒ K): Map[K, T]
    Definition Classes
    TraversableLike → GenTraversableLike
  57. def grouped(size: Int): Iterator[T]
    Definition Classes
    IterableLike
  58. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  59. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  60. def head: V
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  61. def headOption: Option[V]
    Definition Classes
    TraversableLike → GenTraversableLike
  62. def indexOf[B >: V](elem: B, from: Int): Int
    Definition Classes
    GenSeqLike
  63. def indexOf[B >: V](elem: B): Int
    Definition Classes
    GenSeqLike
  64. def indexOfSlice[B >: V](that: GenSeq[B], from: Int): Int
    Definition Classes
    SeqLike
  65. def indexOfSlice[B >: V](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  66. def indexWhere(p: (V) ⇒ Boolean, from: Int): Int
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  67. def indexWhere(p: (V) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  68. def indices: Range
    Definition Classes
    SeqLike
  69. def init: T
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  70. def inits: Iterator[T]
    Definition Classes
    TraversableLike
  71. def intersect[B >: V](that: GenSeq[B]): T
    Definition Classes
    SeqLike → GenSeqLike
  72. def isDefinedAt(idx: Int): Boolean
    Definition Classes
    GenSeqLike
  73. def isEmpty: Boolean
    Definition Classes
    IndexedSeqOptimized → SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  74. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  75. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  76. def iterator: Iterator[V]
    Definition Classes
    IndexedSeqLike → IterableLike → GenIterableLike
  77. def last: V
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  78. def lastIndexOf[B >: V](elem: B, end: Int): Int
    Definition Classes
    GenSeqLike
  79. def lastIndexOf[B >: V](elem: B): Int
    Definition Classes
    GenSeqLike
  80. def lastIndexOfSlice[B >: V](that: GenSeq[B], end: Int): Int
    Definition Classes
    SeqLike
  81. def lastIndexOfSlice[B >: V](that: GenSeq[B]): Int
    Definition Classes
    SeqLike
  82. def lastIndexWhere(p: (V) ⇒ Boolean, end: Int): Int
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  83. def lastIndexWhere(p: (V) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  84. def lastOption: Option[V]
    Definition Classes
    TraversableLike → GenTraversableLike
  85. 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
  86. def lengthCompare(len: Int): Int
    Definition Classes
    IndexedSeqOptimized → SeqLike
  87. def map[B, That](f: (V) ⇒ B)(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  88. def mapResult[NewTo](f: (T) ⇒ NewTo): Builder[V, NewTo]
    Definition Classes
    Builder
  89. def max[B >: V](implicit cmp: Ordering[B]): V
    Definition Classes
    TraversableOnce → GenTraversableOnce
  90. def maxBy[B](f: (V) ⇒ B)(implicit cmp: Ordering[B]): V
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def min[B >: V](implicit cmp: Ordering[B]): V
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def minBy[B](f: (V) ⇒ B)(implicit cmp: Ordering[B]): V
    Definition Classes
    TraversableOnce → GenTraversableOnce
  93. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  96. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  97. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  98. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  99. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  100. def onChange(op: ⇒ Unit): Subscription

    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.

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

    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.

  102. 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
  103. 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
  104. def padTo[B >: V, That](len: Int, elem: B)(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  105. def par: ParSeq[V]
    Definition Classes
    Parallelizable
  106. def parCombiner: Combiner[V, ParSeq[V]]
    Attributes
    protected[this]
    Definition Classes
    SeqLike → TraversableLike → Parallelizable
  107. def partition(p: (V) ⇒ Boolean): (T, T)
    Definition Classes
    TraversableLike → GenTraversableLike
  108. def patch[B >: V, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  109. def permutations: Iterator[T]
    Definition Classes
    SeqLike
  110. def prefixLength(p: (V) ⇒ Boolean): Int
    Definition Classes
    GenSeqLike
  111. def product[B >: V](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. def reduce[A1 >: V](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  113. def reduceLeft[B >: V](op: (B, V) ⇒ B): B
    Definition Classes
    IndexedSeqOptimized → TraversableOnce
  114. def reduceLeftOption[B >: V](op: (B, V) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. def reduceOption[A1 >: V](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  116. def reduceRight[B >: V](op: (V, B) ⇒ B): B
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  117. def reduceRightOption[B >: V](op: (V, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  118. def repr: T
    Definition Classes
    TraversableLike → GenTraversableLike
  119. def result(): T

    Produces collection from builder.

    Produces collection from builder.

    returns

    This ObservableArray.

    Definition Classes
    ObservableArray → Builder
  120. def reverse: T
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  121. def reverseIterator: Iterator[V]
    Definition Classes
    IndexedSeqOptimized → SeqLike
  122. def reverseMap[B, That](f: (V) ⇒ B)(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  123. def reversed: List[V]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  124. def sameElements[B >: V](that: GenIterable[B]): Boolean
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  125. def scan[B >: V, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[T, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  126. def scanLeft[B, That](z: B)(op: (B, V) ⇒ B)(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  127. 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.

  128. def segmentLength(p: (V) ⇒ Boolean, from: Int): Int
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  129. 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
  130. 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
  131. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
    Definition Classes
    Builder
  132. def sizeHint(coll: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  133. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  134. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
    Definition Classes
    Builder
  135. def sizeHintIfCheap: Int
    Attributes
    protected[collection]
    Definition Classes
    IndexedSeqLike → GenTraversableOnce
  136. def slice(from: Int, until: Int): T
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  137. def sliding(size: Int, step: Int): Iterator[T]
    Definition Classes
    IterableLike
  138. def sliding(size: Int): Iterator[T]
    Definition Classes
    IterableLike
  139. def sortBy[B](f: (V) ⇒ B)(implicit ord: Ordering[B]): T
    Definition Classes
    SeqLike
  140. def sortWith(lt: (V, V) ⇒ Boolean): T
    Definition Classes
    SeqLike
  141. def sorted[B >: V](implicit ord: Ordering[B]): T
    Definition Classes
    SeqLike
  142. def span(p: (V) ⇒ Boolean): (T, T)
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  143. def splitAt(n: Int): (T, T)
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  144. def startsWith[B](that: GenSeq[B], offset: Int): Boolean
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  145. def startsWith[B](that: GenSeq[B]): Boolean
    Definition Classes
    GenSeqLike
  146. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  147. def sum[B >: V](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  148. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  149. def tail: T
    Definition Classes
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  150. def tails: Iterator[T]
    Definition Classes
    TraversableLike
  151. def take(n: Int): T
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  152. def takeRight(n: Int): T
    Definition Classes
    IndexedSeqOptimized → IterableLike
  153. def takeWhile(p: (V) ⇒ Boolean): T
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  154. def thisCollection: IndexedSeq[V]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  155. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, V, Col[V]]): Col[V]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  156. 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.

  157. def toArray[B >: V](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  158. def toBuffer[A1 >: V]: Buffer[A1]
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  159. def toCollection(repr: T): IndexedSeq[V]
    Attributes
    protected[this]
    Definition Classes
    IndexedSeqLike → IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  160. def toIndexedSeq: IndexedSeq[V]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  161. def toIterable: Iterable[V]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  162. def toIterator: Iterator[V]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  163. def toList: List[V]
    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  164. def toMap[T, U](implicit ev: <:<[V, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. def toSeq: Seq[V]
    Definition Classes
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  166. def toSet[B >: V]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  167. def toStream: Stream[V]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  168. def toString(): String

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  169. def toTraversable: Traversable[V]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  170. def toVector: Vector[V]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  171. def trimToSize(): Unit

    Shrinks capacity to current length of data in this array.

  172. def union[B >: V, That](that: GenSeq[B])(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  173. 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.

  174. def updated[B >: V, That](index: Int, elem: B)(implicit bf: CanBuildFrom[T, B, That]): That
    Definition Classes
    SeqLike → GenSeqLike
  175. def view(from: Int, until: Int): IndexedSeqView[V, T]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  176. def view: IndexedSeqView[V, T]
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  177. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  178. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  179. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  180. def withFilter(p: (V) ⇒ Boolean): FilterMonadic[V, T]
    Definition Classes
    TraversableLike → FilterMonadic
  181. def zip[A1 >: V, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[T, (A1, B), That]): That
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  182. 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
  183. def zipWithIndex[A1 >: V, That](implicit bf: CanBuildFrom[T, (A1, Int), That]): That
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, V) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def :\[B](z: B)(op: (V, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  3. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

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