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

trait ObservableSet[T] extends AbstractSet[T] with Observable with SFXDelegate[javafx.collections.ObservableSet[T]]

Wrapper class to JavaFX's ObservableSet .

T

Type of this Set

Source
ObservableSet.scala
Linear Supertypes
Observable, SFXDelegate[javafx.collections.ObservableSet[T]], AbstractSet[T], Set[T], SetOps[T, Set, Set[T]], Shrinkable[T], Builder[T, Set[T]], Growable[T], Clearable, Cloneable[Set[T]], Cloneable, Iterable[T], AbstractSet[T], Set[T], Equals, SetOps[T, [_]Set[_], Set[T]], (T) => Boolean, AbstractIterable[T], Iterable[T], IterableFactoryDefaults[T, [x]Set[x]], IterableOps[T, [_]Set[_], Set[T]], IterableOnceOps[T, [_]Set[_], Set[T]], IterableOnce[T], AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ObservableSet
  2. Observable
  3. SFXDelegate
  4. AbstractSet
  5. Set
  6. SetOps
  7. Shrinkable
  8. Builder
  9. Growable
  10. Clearable
  11. Cloneable
  12. Cloneable
  13. Iterable
  14. AbstractSet
  15. Set
  16. Equals
  17. SetOps
  18. Function1
  19. AbstractIterable
  20. Iterable
  21. IterableFactoryDefaults
  22. IterableOps
  23. IterableOnceOps
  24. IterableOnce
  25. AnyRef
  26. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def delegate: javafx.collections.ObservableSet[T]

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    SFXDelegate

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def &(that: Set[T]): Set[T]
    Definition Classes
    SetOps
    Annotations
    @inline()
  4. final def &~(that: Set[T]): Set[T]
    Definition Classes
    SetOps
    Annotations
    @inline()
  5. final def ++(that: IterableOnce[T]): Set[T]
    Definition Classes
    SetOps
    Annotations
    @inline()
  6. final def ++[B >: T](suffix: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def ++=(xs: IterableOnce[T]): ObservableSet.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  8. final def +=(elem: T): ObservableSet.this.type
    Definition Classes
    Growable
    Annotations
    @inline()
  9. final def --=(xs: IterableOnce[T]): ObservableSet.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  10. final def -=(elem: T): ObservableSet.this.type
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  11. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. def add(elem: T): Boolean
    Definition Classes
    SetOps
  13. def addAll(xs: IterableOnce[T]): ObservableSet.this.type
    Definition Classes
    Growable
  14. def addOne(elem: T): ObservableSet.this.type

    Adds a single element to the set.

    Adds a single element to the set.

    elem

    the element to be added.

    returns

    The Set itself

    Definition Classes
    ObservableSet → Growable
  15. final def addString(b: StringBuilder): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  16. final def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  17. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    IterableOnceOps
  18. def andThen[A](g: (Boolean) => A): (T) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  19. final def apply(elem: T): Boolean
    Definition Classes
    SetOps → Function1
    Annotations
    @inline()
  20. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  21. def canEqual(that: Any): Boolean
    Definition Classes
    Set → Equals
  22. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  23. def clear(): Unit

    Removes all elements from the Set.

    Removes all elements from the Set. After this operation has completed, the Set will be empty.

    Definition Classes
    ObservableSet → Builder → Clearable
  24. def clone(): Set[T]
    Definition Classes
    SetOps → Cloneable → AnyRef
  25. final def coll: ObservableSet.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  26. def collect[B](pf: PartialFunction[T, B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  27. def collectFirst[B](pf: PartialFunction[T, B]): Option[B]
    Definition Classes
    IterableOnceOps
  28. def compose[A](g: (A) => T): (A) => Boolean
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  29. def concat(that: IterableOnce[T]): Set[T]
    Definition Classes
    SetOps
  30. def concat[B >: T](suffix: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
  31. def contains(elem: T): Boolean

    Tests if some element is contained in this Set.

    Tests if some element is contained in this Set.

    elem

    the element to test for membership.

    returns

    true if elem is contained in this Set, false otherwise.

    Definition Classes
    ObservableSet → SetOps
  32. def copyToArray[B >: T](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  33. def copyToArray[B >: T](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
  34. def copyToArray[B >: T](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
  35. def corresponds[B](that: IterableOnce[B])(p: (T, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  36. def count(p: (T) => Boolean): Int
    Definition Classes
    IterableOnceOps
  37. def diff(that: Set[T]): Set[T]
    Definition Classes
    SetOps → SetOps
  38. def drop(n: Int): Set[T]
    Definition Classes
    IterableOps → IterableOnceOps
  39. def dropRight(n: Int): Set[T]
    Definition Classes
    IterableOps
  40. def dropWhile(p: (T) => Boolean): Set[T]
    Definition Classes
    IterableOps → IterableOnceOps
  41. def empty: ObservableHashSet[T]

    Generates a empty ObservableSet.

    Generates a empty ObservableSet.

    returns

    A empty scalafx.collections.ObservableHashSet

    Definition Classes
    ObservableSet → IterableFactoryDefaults → IterableOps
  42. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. 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
  44. def exists(p: (T) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  45. def filter(pred: (T) => Boolean): Set[T]
    Definition Classes
    IterableOps → IterableOnceOps
  46. def filterInPlace(p: (T) => Boolean): ObservableSet.this.type
    Definition Classes
    SetOps
  47. def filterNot(pred: (T) => Boolean): Set[T]
    Definition Classes
    IterableOps → IterableOnceOps
  48. def find(p: (T) => Boolean): Option[T]
    Definition Classes
    IterableOnceOps
  49. def flatMap[B](f: (T) => IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  50. def flatten[B](implicit asIterable: (T) => IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  51. def fold[A1 >: T](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  52. def foldLeft[B](z: B)(op: (B, T) => B): B
    Definition Classes
    IterableOnceOps
  53. def foldRight[B](z: B)(op: (T, B) => B): B
    Definition Classes
    IterableOnceOps
  54. def forall(p: (T) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  55. def foreach[U](f: (T) => U): Unit
    Definition Classes
    IterableOnceOps
  56. def fromSpecific(coll: IterableOnce[T]): Set[T]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  57. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  58. def groupBy[K](f: (T) => K): Map[K, Set[T]]
    Definition Classes
    IterableOps
  59. def groupMap[K, B](key: (T) => K)(f: (T) => B): Map[K, Set[B]]
    Definition Classes
    IterableOps
  60. def groupMapReduce[K, B](key: (T) => K)(f: (T) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  61. def grouped(size: Int): Iterator[Set[T]]
    Definition Classes
    IterableOps
  62. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  63. def head: T
    Definition Classes
    IterableOps
  64. def headOption: Option[T]
    Definition Classes
    IterableOps
  65. def init: Set[T]
    Definition Classes
    IterableOps
  66. def inits: Iterator[Set[T]]
    Definition Classes
    IterableOps
  67. def intersect(that: Set[T]): Set[T]
    Definition Classes
    SetOps
  68. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  69. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  70. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  71. val iterableFactory: IterableFactory[ObservableSet]
    Definition Classes
    ObservableSet → Set → Iterable → Set → Iterable → IterableOps
  72. def iterator: Iterator[T]

    Creates a new iterator over elements of this set

    Creates a new iterator over elements of this set

    Definition Classes
    ObservableSet → IterableOnce
  73. def knownSize: Int
    Definition Classes
    SetOps → Growable → IterableOnce
  74. def last: T
    Definition Classes
    IterableOps
  75. def lastOption: Option[T]
    Definition Classes
    IterableOps
  76. def lazyZip[B](that: Iterable[B]): LazyZip2[T, B, ObservableSet.this.type]
    Definition Classes
    Iterable
  77. def map[B](f: (T) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  78. def mapResult[NewTo](f: (Set[T]) => NewTo): Builder[T, NewTo]
    Definition Classes
    Builder
  79. def max[B >: T](implicit ord: Ordering[B]): T
    Definition Classes
    IterableOnceOps
  80. def maxBy[B](f: (T) => B)(implicit cmp: Ordering[B]): T
    Definition Classes
    IterableOnceOps
  81. def maxByOption[B](f: (T) => B)(implicit cmp: Ordering[B]): Option[T]
    Definition Classes
    IterableOnceOps
  82. def maxOption[B >: T](implicit ord: Ordering[B]): Option[T]
    Definition Classes
    IterableOnceOps
  83. def min[B >: T](implicit ord: Ordering[B]): T
    Definition Classes
    IterableOnceOps
  84. def minBy[B](f: (T) => B)(implicit cmp: Ordering[B]): T
    Definition Classes
    IterableOnceOps
  85. def minByOption[B](f: (T) => B)(implicit cmp: Ordering[B]): Option[T]
    Definition Classes
    IterableOnceOps
  86. def minOption[B >: T](implicit ord: Ordering[B]): Option[T]
    Definition Classes
    IterableOnceOps
  87. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  88. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  89. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  90. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  91. def newSpecificBuilder: Builder[T, Set[T]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  92. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  93. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  94. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  95. def onChange(op: => Unit): Subscription

    Add a listener function to Set's changes.

    Add a listener function to Set's changes. This function will not handle this Set's modifications data.

    op

    No-argument function to be activated when some change in this ObservableSet was made.

  96. def onChange[J >: T](op: (ObservableSet[T], Change[J]) => Unit): Subscription

    Add a listener function to Set's changes.

    Add a listener function to Set's changes. This function will handle this map's modifications data.

    op

    Function that will handle this ObservableSet's modifications data to be activated when some change was made.

  97. 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
  98. 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
  99. def partition(p: (T) => Boolean): (Set[T], Set[T])
    Definition Classes
    IterableOps
  100. def partitionMap[A1, A2](f: (T) => Either[A1, A2]): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  101. def product[B >: T](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  102. def reduce[B >: T](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  103. def reduceLeft[B >: T](op: (B, T) => B): B
    Definition Classes
    IterableOnceOps
  104. def reduceLeftOption[B >: T](op: (B, T) => B): Option[B]
    Definition Classes
    IterableOnceOps
  105. def reduceOption[B >: T](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  106. def reduceRight[B >: T](op: (T, B) => B): B
    Definition Classes
    IterableOnceOps
  107. def reduceRightOption[B >: T](op: (T, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  108. def remove(elem: T): Boolean
    Definition Classes
    SetOps
  109. def result(): ObservableSet[T]

    The result when this set is used as a builder

    The result when this set is used as a builder

    Definition Classes
    ObservableSet → SetOps → Builder
  110. def reversed: Iterable[T]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  111. def scan[B >: T](z: B)(op: (B, B) => B): Set[B]
    Definition Classes
    IterableOps
  112. def scanLeft[B](z: B)(op: (B, T) => B): Set[B]
    Definition Classes
    IterableOps → IterableOnceOps
  113. def scanRight[B](z: B)(op: (T, B) => B): Set[B]
    Definition Classes
    IterableOps
  114. def size: Int

    returns

    This Set's size.

    Definition Classes
    ObservableSet → IterableOnceOps
  115. def sizeCompare(that: Iterable[_]): Int
    Definition Classes
    IterableOps
  116. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  117. final def sizeHint(coll: IterableOnce[_], delta: Int): Unit
    Definition Classes
    Builder
  118. def sizeHint(size: Int): Unit
    Definition Classes
    Builder
  119. final def sizeHintBounded(size: Int, boundingColl: Iterable[_]): Unit
    Definition Classes
    Builder
  120. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  121. def slice(from: Int, until: Int): Set[T]
    Definition Classes
    IterableOps → IterableOnceOps
  122. def sliding(size: Int, step: Int): Iterator[Set[T]]
    Definition Classes
    IterableOps
  123. def sliding(size: Int): Iterator[Set[T]]
    Definition Classes
    IterableOps
  124. def span(p: (T) => Boolean): (Set[T], Set[T])
    Definition Classes
    IterableOps → IterableOnceOps
  125. def splitAt(n: Int): (Set[T], Set[T])
    Definition Classes
    IterableOps → IterableOnceOps
  126. def stepper[S <: Stepper[_]](implicit shape: StepperShape[T, S]): S
    Definition Classes
    IterableOnce
  127. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Set → Iterable
  128. def subsetOf(that: Set[T]): Boolean
    Definition Classes
    SetOps
  129. def subsets(): Iterator[Set[T]]
    Definition Classes
    SetOps
  130. def subsets(len: Int): Iterator[Set[T]]
    Definition Classes
    SetOps
  131. def subtractAll(xs: IterableOnce[T]): ObservableSet.this.type
    Definition Classes
    Shrinkable
  132. def subtractOne(elem: T): ObservableSet.this.type

    Removes a single element from this mutable set.

    Removes a single element from this mutable set.

    elem

    the element to be removed.

    returns

    The Set itself

    Definition Classes
    ObservableSet → Shrinkable
  133. def sum[B >: T](implicit num: Numeric[B]): B
    Definition Classes
    IterableOnceOps
  134. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  135. def tail: Set[T]
    Definition Classes
    IterableOps
  136. def tails: Iterator[Set[T]]
    Definition Classes
    IterableOps
  137. def take(n: Int): Set[T]
    Definition Classes
    IterableOps → IterableOnceOps
  138. def takeRight(n: Int): Set[T]
    Definition Classes
    IterableOps
  139. def takeWhile(p: (T) => Boolean): Set[T]
    Definition Classes
    IterableOps → IterableOnceOps
  140. def tapEach[U](f: (T) => U): Set[T]
    Definition Classes
    IterableOps → IterableOnceOps
  141. def to[C1](factory: Factory[T, C1]): C1
    Definition Classes
    IterableOnceOps
  142. def toArray[B >: T](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  143. final def toBuffer[B >: T]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  144. def toIndexedSeq: IndexedSeq[T]
    Definition Classes
    IterableOnceOps
  145. final def toIterable: ObservableSet.this.type
    Definition Classes
    Iterable → IterableOps
  146. def toList: List[T]
    Definition Classes
    IterableOnceOps
  147. def toMap[K, V](implicit ev: <:<[T, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  148. def toSeq: Seq[T]
    Definition Classes
    IterableOnceOps
  149. def toSet[B >: T]: Set[B]
    Definition Classes
    IterableOnceOps
  150. def toString(): String

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  151. def toVector: Vector[T]
    Definition Classes
    IterableOnceOps
  152. def transpose[B](implicit asIterable: (T) => Iterable[B]): Set[Set[B]]
    Definition Classes
    IterableOps
  153. final def union(that: Set[T]): Set[T]
    Definition Classes
    SetOps
    Annotations
    @inline()
  154. def unzip[A1, A2](implicit asPair: (T) => (A1, A2)): (Set[A1], Set[A2])
    Definition Classes
    IterableOps
  155. def unzip3[A1, A2, A3](implicit asTriple: (T) => (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
    Definition Classes
    IterableOps
  156. def update(elem: T, included: Boolean): Unit
    Definition Classes
    SetOps
  157. def view: View[T]
    Definition Classes
    IterableOps
  158. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  159. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  160. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  161. def withFilter(p: (T) => Boolean): WithFilter[T, [_]Set[_]]
    Definition Classes
    IterableOps
  162. def zip[B](that: IterableOnce[B]): Set[(T, B)]
    Definition Classes
    IterableOps
  163. def zipAll[A1 >: T, B](that: Iterable[B], thisElem: A1, thatElem: B): Set[(A1, B)]
    Definition Classes
    IterableOps
  164. def zipWithIndex: Set[(T, Int)]
    Definition Classes
    IterableOps → IterableOnceOps
  165. final def |(that: Set[T]): Set[T]
    Definition Classes
    SetOps
    Annotations
    @inline()

Deprecated Value Members

  1. def +(elem1: T, elem2: T, elems: T*): Set[T]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ with an explicit collection argument instead of + with varargs

  2. def +(elem: T): Set[T]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set or fall back to Set.union

  3. def ++:[B >: T](that: IterableOnce[B]): Set[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  4. final def +=(elem1: T, elem2: T, elems: T*): ObservableSet.this.type
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= aka addAll instead of varargs +=; infix operations with an operand of multiple args will be deprecated

  5. def -(elem1: T, elem2: T, elems: T*): Set[T]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use &- with an explicit collection argument instead of - with varargs

  6. def -(elem: T): Set[T]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set or fall back to Set.diff

  7. def --(that: IterableOnce[T]): Set[T]
    Definition Classes
    SetOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Consider requiring an immutable Set

  8. def -=(elem1: T, elem2: T, elems: T*): ObservableSet.this.type
    Definition Classes
    Shrinkable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.3) Use --= aka subtractAll instead of varargs -=; infix operations with an operand of multiple args will be deprecated

  9. final def /:[B](z: B)(op: (B, T) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  10. final def :\[B](z: B)(op: (T, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  11. def aggregate[B](z: => B)(seqop: (B, T) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  12. def companion: IterableFactory[[_]Set[_]]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  13. final def copyToBuffer[B >: T](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  15. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  16. final def repr: Set[T]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  17. final def retain(p: (T) => Boolean): Unit
    Definition Classes
    SetOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use filterInPlace instead

  18. def seq: ObservableSet.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  19. final def toIterator: Iterator[T]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  20. final def toStream: Stream[T]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  21. final def toTraversable: Traversable[T]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  22. def view(from: Int, until: Int): View[T]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from Observable

Inherited from SFXDelegate[javafx.collections.ObservableSet[T]]

Inherited from AbstractSet[T]

Inherited from Set[T]

Inherited from SetOps[T, Set, Set[T]]

Inherited from Shrinkable[T]

Inherited from Builder[T, Set[T]]

Inherited from Growable[T]

Inherited from Clearable

Inherited from Cloneable[Set[T]]

Inherited from Cloneable

Inherited from Iterable[T]

Inherited from AbstractSet[T]

Inherited from Set[T]

Inherited from Equals

Inherited from SetOps[T, [_]Set[_], Set[T]]

Inherited from (T) => Boolean

Inherited from AbstractIterable[T]

Inherited from Iterable[T]

Inherited from IterableFactoryDefaults[T, [x]Set[x]]

Inherited from IterableOps[T, [_]Set[_], Set[T]]

Inherited from IterableOnceOps[T, [_]Set[_], Set[T]]

Inherited from IterableOnce[T]

Inherited from AnyRef

Inherited from Any

Ungrouped