Uses of Interface
javafx.collections.ObservableSet
Packages that use ObservableSet
Package
Description
Provides classes that create and operate on a 
Binding
     that calculates a value that depends on one or more sources.The package 
javafx.beans.property defines read-only
     properties and writable properties, plus a number of implementations.The package 
javafx.beans.value contains the two
     fundamental interfaces ObservableValue and WritableValue and all of its sub-interfaces.Contains the essential JavaFX collections and collection utilities
Provides API for making properties styleable via CSS and for supporting
 pseudo-class state.
Provides the public classes for the JavaFX Printing API.
Provides the core set of base
 classes for the JavaFX Scene Graph API.
The JavaFX User Interface Controls (UI Controls or just Controls) are
 specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
 many different application contexts.
- 
Uses of ObservableSet in javafx.beans.bindingClasses in javafx.beans.binding that implement ObservableSetModifier and TypeClassDescriptionclassSetBinding<E>Base class that provides most of the functionality needed to implement aBindingof anObservableSet.classSetExpressionis anObservableSetValueplus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding that return ObservableSetModifier and TypeMethodDescriptionprotected abstract ObservableSet<E>SetBinding.computeValue()Calculates the current value of this binding.final ObservableSet<E>SetBinding.get()Returns the result ofSetBinding.computeValue().SetExpression.getValue()Methods in javafx.beans.binding with parameters of type ObservableSetModifier and TypeMethodDescriptionstatic <E> voidBindings.bindContent(Set<E> set1, ObservableSet<? extends E> set2) Generates a content binding between anObservableSetand aSet.static <E> voidBindings.bindContentBidirectional(ObservableSet<E> set1, ObservableSet<E> set2) Generates a bidirectional binding (or "bind with inverse") between two instances ofObservableSet.static <E> BooleanBindingBindings.isEmpty(ObservableSet<E> op) SetExpression.isEqualTo(ObservableSet<?> other) static <E> BooleanBindingBindings.isNotEmpty(ObservableSet<E> op) SetExpression.isNotEqualTo(ObservableSet<?> other) static <E> IntegerBindingBindings.size(ObservableSet<E> op) Creates a newIntegerBindingthat contains the size of anObservableSet.Method parameters in javafx.beans.binding with type arguments of type ObservableSetModifier and TypeMethodDescriptionvoidSetBinding.addListener(ChangeListener<? super ObservableSet<E>> listener) voidSetBinding.removeListener(ChangeListener<? super ObservableSet<E>> listener) 
- 
Uses of ObservableSet in javafx.beans.propertyClasses in javafx.beans.property that implement ObservableSetModifier and TypeClassDescriptionclassSuperclass for all readonly properties wrapping anObservableSet.classBase class for all readonly properties wrapping anObservableSet.classThis class provides a convenient class to define read-only properties.classSetProperty<E>This class provides a full implementation of aPropertywrapping anObservableSet.classThe classSetPropertyBaseis the base class for a property wrapping anObservableSet.classThis class provides a full implementation of aPropertywrapping anObservableSet.Methods in javafx.beans.property that return ObservableSetMethods in javafx.beans.property with parameters of type ObservableSetModifier and TypeMethodDescriptionvoidReadOnlySetProperty.bindContent(ObservableSet<E> set) Creates a content binding between theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObservableSet.voidReadOnlySetProperty.bindContentBidirectional(ObservableSet<E> set) Creates a bidirectional content binding of theObservableSet, that is wrapped in thisReadOnlySetProperty, and anotherObservableSet.voidSetPropertyBase.set(ObservableSet<E> newValue) voidSetProperty.setValue(ObservableSet<E> v) Set the wrapped value.Method parameters in javafx.beans.property with type arguments of type ObservableSetModifier and TypeMethodDescriptionvoidReadOnlySetPropertyBase.addListener(ChangeListener<? super ObservableSet<E>> listener) voidSetPropertyBase.addListener(ChangeListener<? super ObservableSet<E>> listener) voidSetPropertyBase.bind(ObservableValue<? extends ObservableSet<E>> newObservable) voidSetProperty.bindBidirectional(Property<ObservableSet<E>> other) Create a bidirectional binding between thisPropertyand another one.voidReadOnlySetPropertyBase.removeListener(ChangeListener<? super ObservableSet<E>> listener) voidSetPropertyBase.removeListener(ChangeListener<? super ObservableSet<E>> listener) voidSetProperty.unbindBidirectional(Property<ObservableSet<E>> other) Removes a bidirectional binding between thisPropertyand another one.Constructors in javafx.beans.property with parameters of type ObservableSetModifierConstructorDescriptionReadOnlySetWrapper(Object bean, String name, ObservableSet<E> initialValue) The constructor ofReadOnlySetWrapperReadOnlySetWrapper(ObservableSet<E> initialValue) The constructor ofReadOnlySetWrapperSetPropertyBase(ObservableSet<E> initialValue) The constructor of theSetPropertyBase.SimpleSetProperty(Object bean, String name, ObservableSet<E> initialValue) The constructor ofSimpleSetPropertySimpleSetProperty(ObservableSet<E> initialValue) The constructor ofSimpleSetProperty
- 
Uses of ObservableSet in javafx.beans.valueSubinterfaces of ObservableSet in javafx.beans.valueModifier and TypeInterfaceDescriptioninterfaceAn observable reference to anObservableSet.interfaceA writable reference to anObservableSet.
- 
Uses of ObservableSet in javafx.collectionsMethods in javafx.collections that return ObservableSetModifier and TypeMethodDescriptionstatic <E> ObservableSet<E>FXCollections.checkedObservableSet(ObservableSet<E> set, Class<E> type) Creates and returns a typesafe wrapper on top of provided observable set.static <E> ObservableSet<E>FXCollections.emptyObservableSet()Creates an empty unmodifiable observable set.SetChangeListener.Change.getSet()An observable set that is associated with the change.static <E> ObservableSet<E>FXCollections.observableSet(E... elements) Constructs an ObservableSet backed by a HashSet that contains all the specified elements.static <E> ObservableSet<E>FXCollections.observableSet(Set<E> set) Constructs an ObservableSet that is backed by the specified set.static <E> ObservableSet<E>FXCollections.synchronizedObservableSet(ObservableSet<E> set) Creates and returns a synchronized wrapper on top of provided observable set.static <E> ObservableSet<E>FXCollections.unmodifiableObservableSet(ObservableSet<E> set) Creates and returns unmodifiable wrapper on top of provided observable set.Methods in javafx.collections with parameters of type ObservableSetModifier and TypeMethodDescriptionstatic <E> ObservableSet<E>FXCollections.checkedObservableSet(ObservableSet<E> set, Class<E> type) Creates and returns a typesafe wrapper on top of provided observable set.static <E> ObservableSet<E>FXCollections.synchronizedObservableSet(ObservableSet<E> set) Creates and returns a synchronized wrapper on top of provided observable set.static <E> ObservableSet<E>FXCollections.unmodifiableObservableSet(ObservableSet<E> set) Creates and returns unmodifiable wrapper on top of provided observable set.Constructors in javafx.collections with parameters of type ObservableSetModifierConstructorDescriptionChange(ObservableSet<E> set) Constructs a change associated with a set.
- 
Uses of ObservableSet in javafx.cssMethods in javafx.css that return ObservableSetModifier and TypeMethodDescriptionStyleable.getPseudoClassStates()Return the pseudo-class state of this Styleable.
- 
Uses of ObservableSet in javafx.printMethods in javafx.print that return ObservableSetModifier and TypeMethodDescriptionstatic ObservableSet<Printer>Printer.getAllPrinters()Retrieve the installed printers.
- 
Uses of ObservableSet in javafx.sceneMethods in javafx.scene that return ObservableSet
- 
Uses of ObservableSet in javafx.scene.controlMethods in javafx.scene.control that return ObservableSetModifier and TypeMethodDescriptionfinal ObservableSet<PseudoClass>MenuItem.getPseudoClassStates()Return the pseudo-class state of this Styleable.final ObservableSet<PseudoClass>PopupControl.getPseudoClassStates()Return the pseudo-class state of this Styleable.final ObservableSet<PseudoClass>Tab.getPseudoClassStates()Return the pseudo-class state of this Styleable.final ObservableSet<PseudoClass>TableColumnBase.getPseudoClassStates()Return the pseudo-class state of this Styleable.