Class ReadOnlySetProperty<E>
- javafx.beans.binding.SetExpression<E>
-
- javafx.beans.property.ReadOnlySetProperty<E>
Type Parameters:
E - the type of the Set elements
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:
public abstract class ReadOnlySetProperty<E> extends SetExpression<E> implements ReadOnlyProperty<ObservableSet<E>>
ObservableSet.Since:
JavaFX 2.1
See Also:
ObservableSet, ObservableSetValue, SetExpression, ReadOnlyProperty
-
Property Summary
-
Properties inherited from class javafx.beans.binding.SetExpression
empty, size
-
-
Constructor Summary
Constructors Constructor and Description ReadOnlySetProperty()The constructor ofReadOnlySetProperty.
-
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method and 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.booleanequals(Object obj)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 inherited from class javafx.beans.binding.SetExpression
add, addAll, asString, clear, contains, containsAll, emptyProperty, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, remove, removeAll, retainAll, setExpression, size, sizeProperty, toArray, toArray
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
Methods inherited from interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods inherited from interface javafx.beans.Observable
addListener, removeListener
-
Methods inherited from interface javafx.beans.value.ObservableObjectValue
get
-
Methods inherited from interface javafx.collections.ObservableSet
addListener, removeListener
-
Methods inherited from interface java.util.Set
spliterator
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
-
-
Constructor Detail
-
ReadOnlySetProperty
public ReadOnlySetProperty()
The constructor ofReadOnlySetProperty.
-
-
Method Detail
-
bindContentBidirectional
public void bindContentBidirectional(ObservableSet<E> set)
Creates 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- theObservableSetthis property should be bound toThrows:
NullPointerException- ifsetisnull
-
unbindContentBidirectional
public void unbindContentBidirectional(Object object)
Deletes a bidirectional content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObject.Parameters:
object- theObjectto which the bidirectional binding should be removedThrows:
NullPointerException- ifobjectisnull
-
bindContent
public void bindContent(ObservableSet<E> set)
Creates 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- theObservableSetthis property should be bound toThrows:
NullPointerException- ifsetisnull
-
unbindContent
public void unbindContent(Object object)
Deletes a content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObject.Parameters:
object- theObjectto which the binding should be removedThrows:
NullPointerException- ifobjectisnull
-
equals
public boolean equals(Object obj)
-
hashCode
public int hashCode()
Returns a hash code for thisReadOnlySetPropertyobject.
-
toString
public String toString()
Returns a string representation of thisReadOnlySetPropertyobject.
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.