Interface WritableSetValue<E>
- Type Parameters:
E- the type of theSetelements
- All Superinterfaces:
Collection<E>, Iterable<E>, Observable, ObservableSet<E>, Set<E>, WritableObjectValue<ObservableSet<E>>, WritableValue<ObservableSet<E>>
- All Known Implementing Classes:
ReadOnlySetWrapper, SetProperty, SetPropertyBase, SimpleSetProperty
public interface WritableSetValue<E>
extends WritableObjectValue<ObservableSet<E>>, ObservableSet<E>
A writable reference to an
ObservableSet.- Since:
- JavaFX 2.1
- See Also:
-
Method Summary
Methods 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 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 Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArrayMethods 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, setValueModifier and TypeMethodDescriptiongetValue()Get the wrapped value.voidsetValue(ObservableSet<E> value) Set the wrapped value.