- 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<E>
,ObservableSetValue<E>
,ObservableValue<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 anObservableSet
.- 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 Description ReadOnlySetProperty()
The constructor ofReadOnlySetProperty
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
bindContent(ObservableSet<E> set)
Creates a content binding between theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObservableSet
.void
bindContentBidirectional(ObservableSet<E> set)
Creates a bidirectional content binding of theObservableSet
, that is wrapped in thisReadOnlySetProperty
, and anotherObservableSet
.boolean
equals(Object obj)
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code for thisReadOnlySetProperty
object.String
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 inherited from interface java.util.Collection
parallelStream, removeIf, stream
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
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 javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Methods inherited from interface javafx.beans.property.ReadOnlyProperty
getBean, getName
-
Methods inherited from interface java.util.Set
of, of, of, of, of, of, of, of, of, of, of, of, spliterator
-
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
-
-
-
-
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
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
public void unbindContentBidirectional(Object object)
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
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
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
public void unbindContent(Object object)
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
public boolean equals(Object obj)
Description copied from class:Object
Indicates whether some other object is "equal to" this one.The
equals
method implements an equivalence relation on non-null object references:- It is reflexive: for any non-null reference value
x
,x.equals(x)
should returntrue
. - It is symmetric: for any non-null reference values
x
andy
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any non-null reference values
x
,y
, andz
, ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
. - It is consistent: for any non-null reference values
x
andy
, multiple invocations ofx.equals(y)
consistently returntrue
or consistently returnfalse
, provided no information used inequals
comparisons on the objects is modified. - For any non-null reference value
x
,x.equals(null)
should returnfalse
.
The
equals
method for classObject
implements the most discriminating possible equivalence relation on objects; that is, for any non-null reference valuesx
andy
, this method returnstrue
if and only ifx
andy
refer to the same object (x == y
has the valuetrue
).Note that it is generally necessary to override the
hashCode
method whenever this method is overridden, so as to maintain the general contract for thehashCode
method, which states that equal objects must have equal hash codes.- Specified by:
equals
in interfaceCollection<E>
- Specified by:
equals
in interfaceSet<E>
- Overrides:
equals
in classObject
- Parameters:
obj
- the reference object with which to compare.- Returns:
true
if this object is the same as the obj argument;false
otherwise.- See Also:
Object.hashCode()
,HashMap
- It is reflexive: for any non-null reference value
-
hashCode
public int hashCode()
Returns a hash code for thisReadOnlySetProperty
object.- Specified by:
hashCode
in interfaceCollection<E>
- Specified by:
hashCode
in interfaceSet<E>
- Overrides:
hashCode
in classObject
- Returns:
- a hash code for this
ReadOnlySetProperty
object. - See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
-