java.lang.Object
javafx.beans.binding.SetExpression<E>
javafx.beans.property.ReadOnlySetProperty<E>
- Type Parameters:
E
- the type of theSet
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:
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:
-
Property Summary
Properties declared in class javafx.beans.binding.SetExpression
empty, size
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
bindContent
(ObservableSet<E> set) Creates a content binding between theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObservableSet
.void
Creates a bidirectional content binding of theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObservableSet
.boolean
int
hashCode()
Returns a hash code for thisReadOnlySetProperty
object.toString()
Returns a string representation of thisReadOnlySetProperty
object.void
unbindContent
(Object object) Deletes a content binding between theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObject
.void
unbindContentBidirectional
(Object object) Deletes a bidirectional content binding between theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObject
.Methods declared in 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 declared in class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods declared in interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods declared in interface javafx.beans.Observable
addListener, removeListener, subscribe
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, flatMap, getValue, map, orElse, removeListener, subscribe, subscribe, when
Methods declared in interface javafx.beans.property.ReadOnlyProperty
getBean, getName
Methods declared in interface java.util.Set
spliterator
-
Constructor Details
-
ReadOnlySetProperty
public ReadOnlySetProperty()The constructor ofReadOnlySetProperty
.
-
-
Method Details
-
bindContentBidirectional
Creates a bidirectional content binding of theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObservableSet
.A bidirectional content binding ensures that the content of two
ObservableSets
is the same. If the content of one of the sets changes, the other one will be updated automatically.- Parameters:
set
- theObservableSet
this property should be bound to- Throws:
NullPointerException
- ifset
isnull
IllegalArgumentException
- ifset
is the same set that thisReadOnlySetProperty
points to
-
unbindContentBidirectional
Deletes a bidirectional content binding between theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObject
.- Parameters:
object
- theObject
to which the bidirectional binding should be removed- Throws:
NullPointerException
- ifobject
isnull
IllegalArgumentException
- ifobject
is the same set that thisReadOnlySetProperty
points to
-
bindContent
Creates a content binding between theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObservableSet
.A content binding ensures that the content of the wrapped
ObservableSets
is 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
- theObservableSet
this property should be bound to- Throws:
NullPointerException
- ifset
isnull
IllegalArgumentException
- ifset
is the same set that thisReadOnlySetProperty
points to
-
unbindContent
Deletes a content binding between theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObject
.- Parameters:
object
- theObject
to which the binding should be removed- Throws:
NullPointerException
- ifobject
isnull
IllegalArgumentException
- ifobject
is the same set that thisReadOnlySetProperty
points to
-
equals
-
hashCode
public int hashCode()Returns a hash code for thisReadOnlySetProperty
object. -
toString
Returns a string representation of thisReadOnlySetProperty
object.
-