Class SetProperty<E>
java.lang.Object
javafx.beans.binding.SetExpression<E>
javafx.beans.property.ReadOnlySetProperty<E>
javafx.beans.property.SetProperty<E>
- Type Parameters:
E- the type of theSetelements
- All Implemented Interfaces:
Iterable<E>, Collection<E>, Set<E>, Observable, Property<ObservableSet<E>>, ReadOnlyProperty<ObservableSet<E>>, ObservableObjectValue<ObservableSet<E>>, ObservableSetValue<E>, ObservableValue<ObservableSet<E>>, WritableObjectValue<ObservableSet<E>>, WritableSetValue<E>, WritableValue<ObservableSet<E>>, ObservableSet<E>
- Direct Known Subclasses:
SetPropertyBase
public abstract class SetProperty<E>
extends ReadOnlySetProperty<E>
implements Property<ObservableSet<E>>, WritableSetValue<E>
This class provides a full implementation of a
Property wrapping an
ObservableSet.
The value of a SetProperty can be get and set with ObservableObjectValue.get(),
SetExpression.getValue(), WritableObjectValue.set(Object), and setValue(ObservableSet).
A property can be bound and unbound unidirectional with
Property.bind(javafx.beans.value.ObservableValue) and Property.unbind(). Bidirectional bindings
can be created and removed with bindBidirectional(Property) and
unbindBidirectional(Property).
The context of a SetProperty can be read with ReadOnlyProperty.getBean()
and ReadOnlyProperty.getName().- Since:
- JavaFX 2.1
- See Also:
-
Property Summary
Properties declared in class SetExpression
empty, sizeTypePropertyDescriptionabstract ReadOnlyBooleanPropertyA boolean property that istrue, if the set is empty.abstract ReadOnlyIntegerPropertyAn integer property that represents the size of the set. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidbindBidirectional(Property<ObservableSet<E>> other) Create a bidirectional binding between thisPropertyand another one.voidsetValue(ObservableSet<E> v) Set the wrapped value.toString()Returns a string representation of thisSetPropertyobject.voidunbindBidirectional(Property<ObservableSet<E>> other) Removes a bidirectional binding between thisPropertyand another one.Methods declared in class ReadOnlySetProperty
bindContent, bindContentBidirectional, equals, hashCode, unbindContent, unbindContentBidirectionalModifier and TypeMethodDescriptionvoidbindContent(ObservableSet<E> set) Creates a content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObservableSet.voidCreates a bidirectional content binding of theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObservableSet.booleaninthashCode()Returns a hash code for 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 SetExpression
add, addAll, asString, clear, contains, containsAll, emptyProperty, getSize, getValue, isEmpty, isEqualTo, isNotEqualTo, isNotNull, isNull, iterator, remove, removeAll, retainAll, setExpression, size, sizeProperty, toArray, toArrayModifier and TypeMethodDescriptionbooleanbooleanaddAll(Collection<? extends E> elements) asString()voidclear()booleanbooleancontainsAll(Collection<?> objects) abstract ReadOnlyBooleanPropertyA boolean property that istrue, if the set is empty.intgetSize()The size of the setgetValue()Returns the current value of thisObservableValuebooleanisEmpty()Gets the value of theemptyproperty.isEqualTo(ObservableSet<?> other) isNotEqualTo(ObservableSet<?> other) isNull()iterator()booleanbooleanremoveAll(Collection<?> objects) booleanretainAll(Collection<?> objects) static <E> SetExpression<E> setExpression(ObservableSetValue<E> value) Returns aSetExpressionthat wraps aObservableSetValue.intsize()abstract ReadOnlyIntegerPropertyAn integer property that represents the size of the set.Object[]toArray()<T> T[]toArray(T[] array) Methods declared in class Object
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, waitMethods declared in interface Collection
parallelStream, removeIf, stream, toArrayMethods declared in interface Observable
addListener, removeListener, subscribeModifier and TypeMethodDescriptionvoidaddListener(InvalidationListener listener) Adds anInvalidationListenerwhich will be notified whenever theObservablebecomes invalid.voidremoveListener(InvalidationListener listener) Removes the given listener from the list of listeners, that are notified whenever the value of theObservablebecomes invalid.default SubscriptionCreates aSubscriptionon thisObservablewhich callsinvalidationSubscriberwhenever it becomes invalid.Methods declared in interface ObservableObjectValue
getModifier and TypeMethodDescriptionget()Returns the current value of thisObservableObjectValue<T>.Methods declared in interface ObservableSet
addListener, removeListenerModifier and TypeMethodDescriptionvoidaddListener(SetChangeListener<? super E> listener) Add a listener to this observable set.voidremoveListener(SetChangeListener<? super E> listener) Tries to removed a listener from this observable set.Methods declared in interface ObservableValue
addListener, flatMap, map, orElse, removeListener, subscribe, subscribe, whenModifier and TypeMethodDescriptionvoidaddListener(ChangeListener<? super ObservableSet<E>> listener) Adds aChangeListenerwhich will be notified whenever the value of theObservableValuechanges.default <U> ObservableValue<U> flatMap(Function<? super ObservableSet<E>, ? extends ObservableValue<? extends U>> mapper) Returns anObservableValuethat holds the value of anObservableValueproduced by applying the given mapping function on this value.default <U> ObservableValue<U> map(Function<? super ObservableSet<E>, ? extends U> mapper) Returns anObservableValuethat holds the result of applying the given mapping function on this value.default ObservableValue<ObservableSet<E>> orElse(ObservableSet<E> constant) Returns anObservableValuethat holds this value, or the given constant if it isnull.voidremoveListener(ChangeListener<? super ObservableSet<E>> listener) Removes the given listener from the list of listeners that are notified whenever the value of theObservableValuechanges.default Subscriptionsubscribe(BiConsumer<? super ObservableSet<E>, ? super ObservableSet<E>> changeSubscriber) Creates aSubscriptionon thisObservableValuewhich calls the givenchangeSubscriberwith the old and new value whenever its value changes.default Subscriptionsubscribe(Consumer<? super ObservableSet<E>> valueSubscriber) Creates aSubscriptionon thisObservableValuewhich immediately provides the current value to the givenvalueSubscriber, followed by any subsequent values whenever its value changes.default ObservableValue<ObservableSet<E>> when(ObservableValue<Boolean> condition) Returns anObservableValuethat holds this value and is updated only whenconditionholdstrue.Methods declared in interface Property
bind, isBound, unbindModifier and TypeMethodDescriptionvoidbind(ObservableValue<? extends ObservableSet<E>> observable) Create a unidirection binding for thisProperty.booleanisBound()Can be used to check, if aPropertyis bound.voidunbind()Remove the unidirectional binding for thisProperty.Methods declared in interface ReadOnlyProperty
getBean, getNameMethods declared in interface Set
spliteratorMethods declared in interface WritableObjectValue
get, setModifier and TypeMethodDescriptionget()Get the wrapped value.voidset(ObservableSet<E> value) Set the wrapped value.Methods declared in interface WritableValue
getValue
-
Constructor Details
-
SetProperty
public SetProperty()Creates a defaultSetProperty.
-
-
Method Details
-
setValue
Set the wrapped value.- Specified by:
setValuein interfaceWritableValue<E>- Parameters:
v- The new value
-
bindBidirectional
Create a bidirectional binding between thisPropertyand another one. Bidirectional bindings exists independently of unidirectional bindings. So it is possible to add unidirectional binding to a property with bidirectional binding and vice-versa. However, this practice is discouraged.It is possible to have multiple bidirectional bindings of one Property.
JavaFX bidirectional binding implementation use weak listeners. This means bidirectional binding does not prevent properties from being garbage collected.
- Specified by:
bindBidirectionalin interfaceProperty<E>- Parameters:
other- the otherProperty
-
unbindBidirectional
Removes a bidirectional binding between thisPropertyand another one. If no bidirectional binding between the properties exists, calling this method has no effect. It is possible to unbind by a call on the second property. This code will work:property1.bindBidirectional(property2); property2.unbindBidirectional(property1);- Specified by:
unbindBidirectionalin interfaceProperty<E>- Parameters:
other- the otherProperty
-
toString
Returns a string representation of thisSetPropertyobject.- Overrides:
toStringin classReadOnlySetProperty<E>- Returns:
- a string representation of this
SetPropertyobject.
-