SetExpression

scalafx.beans.binding.SetExpression
See theSetExpression companion object
class SetExpression[E](val delegate: SetExpression[E])

Wraps a JavaFX SetExpression.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class SetBinding[E]
class SetProperty[E]

Members list

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.

Attributes

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 parameters

other

the other ObservableSet

Attributes

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 parameters

other

the other ObservableSet

Attributes

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.

Attributes

Concrete fields

val delegate: SetExpression[E]