- java.lang.Object
-
- javafx.beans.binding.SetExpression<E>
-
- Type Parameters:
E- the type of theSetelements
- All Implemented Interfaces:
Iterable<E>,Collection<E>,Set<E>,Observable,ObservableObjectValue<ObservableSet<E>>,ObservableSetValue<E>,ObservableValue<ObservableSet<E>>,ObservableSet<E>
- Direct Known Subclasses:
ReadOnlySetProperty,SetBinding
public abstract class SetExpression<E> extends Object implements ObservableSetValue<E>
SetExpressionis anObservableSetValueplus additional convenience methods to generate bindings in a fluent style.A concrete sub-class of
SetExpressionhas to implement the methodObservableObjectValue.get(), which provides the actual value of this expression.If the wrapped list of a
SetExpressionisnull, all methods implementing theSetinterface will behave as if they were applied to an immutable empty set.- Since:
- JavaFX 2.1
-
-
Property Summary
Properties Type Property Description abstract ReadOnlyBooleanPropertyemptyA boolean property that istrue, if the set is empty.abstract ReadOnlyIntegerPropertysizeAn integer property that represents the size of the set.
-
Constructor Summary
Constructors Constructor Description SetExpression()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description StringBindingasString()abstract ReadOnlyBooleanPropertyemptyProperty()A boolean property that istrue, if the set is empty.intgetSize()The size of the setBooleanBindingisEqualTo(ObservableSet<?> other)BooleanBindingisNotEqualTo(ObservableSet<?> other)BooleanBindingisNotNull()BooleanBindingisNull()static <E> SetExpression<E>setExpression(ObservableSetValue<E> value)Returns aSetExpressionthat wraps aObservableSetValue.abstract ReadOnlyIntegerPropertysizeProperty()An integer property that represents the size of the set.-
Methods declared in interface java.util.Collection
parallelStream, removeIf, stream
-
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods declared in interface javafx.beans.Observable
addListener, removeListener
-
Methods declared in interface javafx.beans.value.ObservableObjectValue
get
-
Methods declared in interface javafx.collections.ObservableSet
addListener, removeListener
-
Methods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
-
-
-
Property Detail
-
size
public abstract ReadOnlyIntegerProperty sizeProperty
An integer property that represents the size of the set.- See Also:
getSize()
-
empty
public abstract ReadOnlyBooleanProperty emptyProperty
A boolean property that istrue, if the set is empty.- See Also:
Set.isEmpty()
-
-
Method Detail
-
setExpression
public static <E> SetExpression<E> setExpression(ObservableSetValue<E> value)
Returns aSetExpressionthat wraps aObservableSetValue. If theObservableSetValueis already aSetExpression, it will be returned. Otherwise a newSetBindingis created that is bound to theObservableSetValue.- Type Parameters:
E- the type of theSetelements- Parameters:
value- The sourceObservableSetValue- Returns:
- A
SetExpressionthat wraps theObservableSetValueif necessary - Throws:
NullPointerException- ifvalueisnull
-
getSize
public int getSize()
The size of the set- Returns:
- the size
-
sizeProperty
public abstract ReadOnlyIntegerProperty sizeProperty()
An integer property that represents the size of the set.- See Also:
getSize()
-
emptyProperty
public abstract ReadOnlyBooleanProperty emptyProperty()
A boolean property that istrue, if the set is empty.- See Also:
Set.isEmpty()
-
isEqualTo
public BooleanBinding isEqualTo(ObservableSet<?> other)
- Parameters:
other- the otherObservableSet- Returns:
- the new
BooleanBinding - Throws:
NullPointerException- ifotherisnull
-
isNotEqualTo
public BooleanBinding isNotEqualTo(ObservableSet<?> other)
- Parameters:
other- the otherObservableSet- Returns:
- the new
BooleanBinding - Throws:
NullPointerException- ifotherisnull
-
isNull
public BooleanBinding isNull()
- Returns:
- the new
BooleanBinding
-
isNotNull
public BooleanBinding isNotNull()
- Returns:
- the new
BooleanBinding
-
asString
public StringBinding asString()
Creates aStringBindingthat holds the value of theSetExpressionturned into aString. If the value of thisSetExpressionchanges, the value of theStringBindingwill be updated automatically.- Returns:
- the new
StringBinding
-
-