SetExpression

class SetExpression[E](val delegate: SetExpression[E])

Wraps a JavaFX SetExpression.

Wraps a JavaFX SetExpression.

Companion
object
class Object
trait Matchable
class Any

Value members

Concrete methods

def ++=(elem1: E, elem2: E, elems: E*): Boolean
def ++=(xs: Seq[E]): Boolean
def +=(element: E): Boolean
def --=(elem1: E, elem2: E, elems: E*): Boolean
def --=(xs: Seq[E]): Boolean
def -=(element: E): Boolean

A boolean property that is true, if the the set is empty.

A boolean property that is true, if the the set is empty.

Creates a new BooleanBinding that holds true if this set is equal to another ObservableSet.

Creates a new BooleanBinding that holds true if this set is equal to another ObservableSet.

Value Params
other

the other ObservableSet

Returns

the new BooleanBinding

Creates a new BooleanBinding that holds true if this set is not equal to another ObservableSet.

Creates a new BooleanBinding that holds true if this set is not equal to another ObservableSet.

Value Params
other

the other ObservableSet

Returns

the new BooleanBinding

def retainAll(elem1: E, elem2: E, elems: E*): Boolean
def retainAll(xs: Seq[E]): Boolean

An integer property that represents the size of the set.

An integer property that represents the size of the set.

Concrete fields

val delegate: SetExpression[E]