java.lang.Object
javafx.beans.binding.SetExpression<E>
javafx.beans.property.ReadOnlySetProperty<E>
- Type Parameters:
- E- the type of the- Setelements
- All Implemented Interfaces:
- Iterable<E>,- Collection<E>,- Set<E>,- Observable,- ReadOnlyProperty<ObservableSet<E>>,- ObservableObjectValue<ObservableSet<E>>,- ObservableSetValue<E>,- ObservableValue<ObservableSet<E>>,- ObservableSet<E>
- Direct Known Subclasses:
- ReadOnlySetPropertyBase,- SetProperty
public abstract class ReadOnlySetProperty<E> extends SetExpression<E> implements ReadOnlyProperty<ObservableSet<E>>
Superclass for all readonly properties wrapping an 
ObservableSet.- Since:
- JavaFX 2.1
- See Also:
- ObservableSet,- ObservableSetValue,- SetExpression,- ReadOnlyProperty
- 
Property SummaryProperties declared in class javafx.beans.binding.SetExpressionempty, size
- 
Constructor SummaryConstructors Constructor Description ReadOnlySetProperty()The constructor ofReadOnlySetProperty.
- 
Method SummaryModifier and Type Method Description voidbindContent(ObservableSet<E> set)Creates a content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObservableSet.voidbindContentBidirectional(ObservableSet<E> set)Creates a bidirectional content binding of theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObservableSet.inthashCode()Returns a hash code for thisReadOnlySetPropertyobject.StringtoString()Returns a string representation of thisReadOnlySetPropertyobject.voidunbindContent(Object object)Deletes a content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObject.voidunbindContentBidirectional(Object object)Deletes a bidirectional content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObject.Methods declared in class javafx.beans.binding.SetExpressionasString, emptyProperty, getSize, isEqualTo, isNotEqualTo, isNotNull, isNull, setExpression, sizePropertyMethods declared in class java.lang.Objectclone, equals, finalize, getClass, notify, notifyAll, 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, removeListenerMethods declared in interface javafx.beans.property.ReadOnlyPropertygetBean, getName
- 
Constructor Details- 
ReadOnlySetPropertypublic ReadOnlySetProperty()The constructor ofReadOnlySetProperty.
 
- 
- 
Method Details- 
bindContentBidirectionalCreates a bidirectional content binding of theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObservableSet.A bidirectional content binding ensures that the content of two ObservableSetsis the same. If the content of one of the sets changes, the other one will be updated automatically.- Parameters:
- set- the- ObservableSetthis property should be bound to
- Throws:
- NullPointerException- if- setis- null
- IllegalArgumentException- if- setis the same set that this- ReadOnlySetPropertypoints to
 
- 
unbindContentBidirectionalDeletes a bidirectional content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObject.- Parameters:
- object- the- Objectto which the bidirectional binding should be removed
- Throws:
- NullPointerException- if- objectis- null
- IllegalArgumentException- if- objectis the same set that this- ReadOnlySetPropertypoints to
 
- 
bindContentCreates a content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObservableSet.A content binding ensures that the content of the wrapped ObservableSetsis the same as that of the other set. If the content of the other set changes, the wrapped set will be updated automatically. Once the wrapped set is bound to another set, you must not change it directly.- Parameters:
- set- the- ObservableSetthis property should be bound to
- Throws:
- NullPointerException- if- setis- null
- IllegalArgumentException- if- setis the same set that this- ReadOnlySetPropertypoints to
 
- 
unbindContentDeletes a content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObject.- Parameters:
- object- the- Objectto which the binding should be removed
- Throws:
- NullPointerException- if- objectis- null
- IllegalArgumentException- if- objectis the same set that this- ReadOnlySetPropertypoints to
 
- 
hashCodepublic int hashCode()Returns a hash code for thisReadOnlySetPropertyobject.
- 
toStringReturns a string representation of thisReadOnlySetPropertyobject.
 
-