java.lang.Object
javafx.beans.binding.SetExpression<E>
- Type Parameters:
- E- the type of the- Setelements
- 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>
SetExpression is an
 ObservableSetValue plus additional convenience
 methods to generate bindings in a fluent style.
 
 A concrete sub-class of SetExpression has to implement the method
 ObservableObjectValue.get(), which provides the
 actual value of this expression.
 
 If the wrapped list of a SetExpression is null, all methods implementing the Set
 interface will behave as if they were applied to an immutable empty set.
- Since:
- JavaFX 2.1
- 
Property SummaryProperties 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 SummaryConstructors Constructor Description SetExpression()Creates a defaultSetExpression.
- 
Method SummaryModifier 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 class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface java.util.CollectionparallelStream, removeIf, stream, toArrayMethods declared in interface javafx.beans.ObservableaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableObjectValuegetMethods declared in interface javafx.collections.ObservableSetaddListener, removeListenerMethods declared in interface javafx.beans.value.ObservableValueaddListener, getValue, removeListener
- 
Property Details- 
sizeAn integer property that represents the size of the set.- See Also:
- getSize()
 
- 
emptyA boolean property that istrue, if the set is empty.- See Also:
- Set.isEmpty()
 
 
- 
- 
Constructor Details- 
SetExpressionpublic SetExpression()Creates a defaultSetExpression.
 
- 
- 
Method Details- 
setExpressionReturns 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 the- Setelements
- Parameters:
- value- The source- ObservableSetValue
- Returns:
- A SetExpressionthat wraps theObservableSetValueif necessary
- Throws:
- NullPointerException- if- valueis- null
 
- 
getSizepublic int getSize()The size of the set- Returns:
- the size
 
- 
sizePropertyAn integer property that represents the size of the set.- See Also:
- getSize()
 
- 
emptyPropertyA boolean property that istrue, if the set is empty.- See Also:
- Set.isEmpty()
 
- 
isEqualTo- Parameters:
- other- the other- ObservableSet
- Returns:
- the new BooleanBinding
- Throws:
- NullPointerException- if- otheris- null
 
- 
isNotEqualTo- Parameters:
- other- the other- ObservableSet
- Returns:
- the new BooleanBinding
- Throws:
- NullPointerException- if- otheris- null
 
- 
isNull- Returns:
- the new BooleanBinding
 
- 
isNotNull- Returns:
- the new BooleanBinding
 
- 
asStringCreates aStringBindingthat holds the value of theSetExpressionturned into aString. If the value of thisSetExpressionchanges, the value of theStringBindingwill be updated automatically.- Returns:
- the new StringBinding
 
 
-