Uses of Interface
javafx.beans.value.ObservableValue
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.Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property
.The package
javafx.beans.value
contains the two
fundamental interfaces ObservableValue
and WritableValue
and all of its sub-interfaces.Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
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.
The
javafx.scene.control.cell
package is where all cell-related
classes are located, other than the core classes such as
Cell
, IndexedCell
,
ListCell
, TreeCell
,
and TableCell
.-
Uses of ObservableValue in javafx.beans.binding
Modifier and TypeInterfaceDescriptioninterface
Binding<T>
ABinding
calculates a value that depends on one or more sources.interface
A tagging interface to mark all Bindings that wrap a number-value.interface
NumberExpression
is anObservableNumberValue
plus additional convenience methods to generate bindings in a fluent style.Modifier and TypeClassDescriptionclass
Base class that provides most of the functionality needed to implement aBinding
of aboolean
value.class
BooleanExpression
is anObservableBooleanValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of adouble
value.class
DoubleExpression
is anObservableDoubleValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of afloat
value.class
FloatExpression
is anObservableFloatValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of anint
value.class
IntegerExpression
is anObservableIntegerValue
plus additional convenience methods to generate bindings in a fluent style.class
ListBinding<E>
Base class that provides most of the functionality needed to implement aBinding
of anObservableList
.class
ListExpression
is anObservableListValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of along
value.class
LongExpression
is anObservableLongValue
plus additional convenience methods to generate bindings in a fluent style.class
MapBinding<K,
V> Base class that provides most of the functionality needed to implement aBinding
of anObservableMap
.class
MapExpression<K,
V> MapExpression
is anObservableMapValue
plus additional convenience methods to generate bindings in a fluent style.class
NumberExpressionBase
contains convenience methods to generate bindings in a fluent style, that are common to all NumberExpression subclasses.class
Base class that provides most of the functionality needed to implement aBinding
of anObject
.class
ObjectExpression
is anObservableObjectValue
plus additional convenience methods to generate bindings in a fluent style.class
SetBinding<E>
Base class that provides most of the functionality needed to implement aBinding
of anObservableSet
.class
SetExpression
is anObservableSetValue
plus additional convenience methods to generate bindings in a fluent style.class
Base class that provides most of the functionality needed to implement aBinding
of aString
.class
StringExpression
is anObservableStringValue
plus additional convenience methods to generate bindings in a fluent style.Modifier and TypeMethodDescriptionstatic BooleanExpression
BooleanExpression.booleanExpression
(ObservableValue<Boolean> value) Returns aBooleanExpression
that wraps anObservableValue
.static <K> BooleanBinding
Bindings.booleanValueAt
(ObservableMap<K, Boolean> op, ObservableValue<? extends K> key) Creates a newBooleanBinding
that contains the mapping of a specific key in anObservableMap
.static StringExpression
Bindings.convert
(ObservableValue<?> observableValue) Returns aStringExpression
that wraps aObservableValue
.static <T extends Number>
DoubleExpressionDoubleExpression.doubleExpression
(ObservableValue<T> value) Returns aDoubleExpression
that wraps anObservableValue
.static <K> DoubleBinding
Bindings.doubleValueAt
(ObservableMap<K, ? extends Number> op, ObservableValue<? extends K> key) Creates a newDoubleBinding
that contains the mapping of a specific key in anObservableMap
.static <T extends Number>
FloatExpressionFloatExpression.floatExpression
(ObservableValue<T> value) Returns aFloatExpression
that wraps anObservableValue
.static <K> FloatBinding
Bindings.floatValueAt
(ObservableMap<K, ? extends Number> op, ObservableValue<? extends K> key) Creates a newFloatBinding
that contains the mapping of a specific key in anObservableMap
.static <T extends Number>
IntegerExpressionIntegerExpression.integerExpression
(ObservableValue<T> value) Returns anIntegerExpression
that wraps anObservableValue
.static <K> IntegerBinding
Bindings.integerValueAt
(ObservableMap<K, ? extends Number> op, ObservableValue<? extends K> key) Creates a newIntegerBinding
that contains the mapping of a specific key in anObservableMap
.static <T extends Number>
LongExpressionLongExpression.longExpression
(ObservableValue<T> value) Returns aLongExpression
that wraps anObservableValue
.static <K> LongBinding
Bindings.longValueAt
(ObservableMap<K, ? extends Number> op, ObservableValue<? extends K> key) Creates a newLongBinding
that contains the mapping of a specific key in anObservableMap
.static <T> ObjectBinding
<T> Bindings.select
(ObservableValue<?> root, String... steps) Creates a binding used to get a member, such asa.b.c
.static BooleanBinding
Bindings.selectBoolean
(ObservableValue<?> root, String... steps) Creates a binding used to get a member, such asa.b.c
.static DoubleBinding
Bindings.selectDouble
(ObservableValue<?> root, String... steps) Creates a binding used to get a member, such asa.b.c
.static FloatBinding
Bindings.selectFloat
(ObservableValue<?> root, String... steps) Creates a binding used to get a member, such asa.b.c
.static IntegerBinding
Bindings.selectInteger
(ObservableValue<?> root, String... steps) Creates a binding used to get a member, such asa.b.c
.static LongBinding
Bindings.selectLong
(ObservableValue<?> root, String... steps) Creates a binding used to get a member, such asa.b.c
.static StringBinding
Bindings.selectString
(ObservableValue<?> root, String... steps) Creates a binding used to get a member, such asa.b.c
.static StringExpression
StringExpression.stringExpression
(ObservableValue<?> value) Returns aStringExpression
that wraps aObservableValue
.static <K> StringBinding
Bindings.stringValueAt
(ObservableMap<K, String> op, ObservableValue<? extends K> key) Creates a newStringBinding
that contains the mapping of a specific key in anObservableMap
.static <K,
V> ObjectBinding <V> Bindings.valueAt
(ObservableMap<K, V> op, ObservableValue<? extends K> key) Creates a newObjectBinding
that contains the mapping of a specific key in anObservableMap
.MapExpression.valueAt
(ObservableValue<K> key) Creates a newObjectBinding
that contains the mapping of the specified key. -
Uses of ObservableValue in javafx.beans.property
Modifier and TypeInterfaceDescriptioninterface
Property<T>
Generic interface that defines the methods common to all (writable) properties, independent of their type.interface
Generic interface that defines the methods common to all readable properties independent of their type.Modifier and TypeClassDescriptionclass
This class provides a full implementation of aProperty
wrapping aboolean
value.class
The classBooleanPropertyBase
is the base class for a property wrapping aboolean
value.class
This class defines aProperty
wrapping adouble
value.class
The classDoublePropertyBase
is the base class for a property wrapping adouble
value.class
This class defines aProperty
wrapping afloat
value.class
The classFloatPropertyBase
is the base class for a property wrapping afloat
value.class
This class defines aProperty
wrapping anint
value.class
The classIntegerPropertyBase
is the base class for a property wrapping aint
value.class
ListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.class
The classListPropertyBase
is the base class for a property wrapping anObservableList
.class
This class defines aProperty
wrapping along
value.class
The classLongPropertyBase
is the base class for a property wrapping along
value.class
MapProperty<K,
V> This class provides a full implementation of aProperty
wrapping anObservableMap
.class
MapPropertyBase<K,
V> The classMapPropertyBase
is the base class for a property wrapping anObservableMap
.class
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
The classObjectPropertyBase
is the base class for a property wrapping an arbitraryObject
.class
Superclass for all readonly properties wrapping aboolean
.class
Base class for all readonly properties wrapping aboolean
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping adouble
.class
Base class for all readonly properties wrapping adouble
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping afloat
.class
Base class for all readonly properties wrapping afloat
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anint
.class
Base class for all readonly properties wrapping anint
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anObservableList
.class
Base class for all readonly properties wrapping anObservableList
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping along
.class
Base class for all readonly properties wrapping along
.class
This class provides a convenient class to define read-only properties.class
ReadOnlyMapProperty<K,
V> Superclass for all readonly properties wrapping anObservableMap
.class
Base class for all readonly properties wrapping anObservableMap
.class
ReadOnlyMapWrapper<K,
V> This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping an arbitraryObject
.class
Base class for all readonly properties wrapping an arbitraryObject
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anObservableSet
.class
Base class for all readonly properties wrapping anObservableSet
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anString
.class
Base class for all readonly properties wrapping aString
.class
This class provides a convenient class to define read-only properties.class
SetProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableSet
.class
The classSetPropertyBase
is the base class for a property wrapping anObservableSet
.class
This class provides a full implementation of aProperty
wrapping aboolean
value.class
This class provides a full implementation of aProperty
wrapping adouble
value.class
This class provides a full implementation of aProperty
wrapping afloat
value.class
This class provides a full implementation of aProperty
wrapping aint
value.class
This class provides a full implementation of aProperty
wrapping anObservableList
.class
This class provides a full implementation of aProperty
wrapping along
value.class
SimpleMapProperty<K,
V> This class provides a full implementation of aProperty
wrapping anObservableMap
.class
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
This class provides a full implementation of aProperty
wrapping anObservableSet
.class
This class provides a full implementation of aProperty
wrapping aString
value.class
This class provides a full implementation of aProperty
wrapping aString
value.class
The classStringPropertyBase
is the base class for a property wrapping aString
value.Modifier and TypeMethodDescriptionvoid
BooleanPropertyBase.bind
(ObservableValue<? extends Boolean> rawObservable) Create a unidirection binding for thisProperty
.void
DoublePropertyBase.bind
(ObservableValue<? extends Number> rawObservable) Create a unidirection binding for thisProperty
.void
FloatPropertyBase.bind
(ObservableValue<? extends Number> rawObservable) Create a unidirection binding for thisProperty
.void
IntegerPropertyBase.bind
(ObservableValue<? extends Number> rawObservable) Create a unidirection binding for thisProperty
.void
ListPropertyBase.bind
(ObservableValue<? extends ObservableList<E>> newObservable) void
LongPropertyBase.bind
(ObservableValue<? extends Number> rawObservable) Create a unidirection binding for thisProperty
.void
MapPropertyBase.bind
(ObservableValue<? extends ObservableMap<K, V>> newObservable) void
ObjectPropertyBase.bind
(ObservableValue<? extends T> newObservable) Create a unidirection binding for thisProperty
.void
Property.bind
(ObservableValue<? extends T> observable) Create a unidirection binding for thisProperty
.void
SetPropertyBase.bind
(ObservableValue<? extends ObservableSet<E>> newObservable) void
StringPropertyBase.bind
(ObservableValue<? extends String> newObservable) Create a unidirection binding for thisProperty
. -
Uses of ObservableValue in javafx.beans.property.adapter
Modifier and TypeInterfaceDescriptioninterface
JavaBeanProperty
is the super interface of all adapters between writable Java Bean properties and JavaFX properties.interface
JavaBeanProperty
is the super interface of all adapters between readonly Java Bean properties and JavaFX properties.Modifier and TypeClassDescriptionfinal class
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
.final class
AJavaBeanDoubleProperty
provides an adapter between a regular Java Bean property of typedouble
orDouble
and a JavaFXDoubleProperty
.final class
AJavaBeanFloatProperty
provides an adapter between a regular Java Bean property of typefloat
orFloat
and a JavaFXFloatProperty
.final class
AJavaBeanIntegerProperty
provides an adapter between a regular Java Bean property of typeint
orInteger
and a JavaFXIntegerProperty
.final class
AJavaBeanLongProperty
provides an adapter between a regular Java Bean property of typelong
orLong
and a JavaFXLongProperty
.final class
AJavaBeanObjectProperty
provides an adapter between a regular Java Bean property of typeT
and a JavaFXObjectProperty<T>
.final class
AJavaBeanStringProperty
provides an adapter between a regular Java Bean property of typeString
and a JavaFXStringProperty
.final class
AReadOnlyJavaBeanBooleanProperty
provides an adapter between a regular read only Java Bean property of typeboolean
orBoolean
and a JavaFXReadOnlyBooleanProperty
.final class
AReadOnlyJavaBeanDoubleProperty
provides an adapter between a regular read only Java Bean property of typedouble
orDouble
and a JavaFXReadOnlyDoubleProperty
.final class
AReadOnlyJavaBeanFloatProperty
provides an adapter between a regular read only Java Bean property of typefloat
orFloat
and a JavaFXReadOnlyFloatProperty
.final class
AReadOnlyJavaBeanIntegerProperty
provides an adapter between a regular read only Java Bean property of typeint
orInteger
and a JavaFXReadOnlyIntegerProperty
.final class
AReadOnlyJavaBeanLongProperty
provides an adapter between a regular read only Java Bean property of typelong
orLong
and a JavaFXReadOnlyLongProperty
.final class
AReadOnlyJavaBeanObjectProperty
provides an adapter between a regular read only Java Bean property ofT
and a JavaFXReadOnlyObjectProperty
.final class
AReadOnlyJavaBeanStringProperty
provides an adapter between a regular read only Java Bean property of typeString
and a JavaFXReadOnlyStringProperty
.Modifier and TypeMethodDescriptionvoid
JavaBeanBooleanProperty.bind
(ObservableValue<? extends Boolean> observable) Create a unidirection binding for thisProperty
.void
JavaBeanDoubleProperty.bind
(ObservableValue<? extends Number> observable) Create a unidirection binding for thisProperty
.void
JavaBeanFloatProperty.bind
(ObservableValue<? extends Number> observable) Create a unidirection binding for thisProperty
.void
JavaBeanIntegerProperty.bind
(ObservableValue<? extends Number> observable) Create a unidirection binding for thisProperty
.void
JavaBeanLongProperty.bind
(ObservableValue<? extends Number> observable) Create a unidirection binding for thisProperty
.void
JavaBeanObjectProperty.bind
(ObservableValue<? extends T> observable) Create a unidirection binding for thisProperty
.void
JavaBeanStringProperty.bind
(ObservableValue<? extends String> observable) Create a unidirection binding for thisProperty
. -
Uses of ObservableValue in javafx.beans.value
Modifier and TypeInterfaceDescriptioninterface
An observable boolean value.interface
An observable double value.interface
An observable float value.interface
An observable integer value.interface
An observable reference to anObservableList
.interface
An observable long value.interface
ObservableMapValue<K,
V> An observable reference to anObservableMap
.interface
A common interface of all sub-interfaces ofObservableValue
that wrap a number.interface
An observable typedObject
value.interface
An observable reference to anObservableSet
.interface
An observable String value.Modifier and TypeClassDescriptionclass
A convenience class for creating implementations ofObservableValue
.Modifier and TypeMethodDescriptiondefault <U> ObservableValue
<U> ObservableValue.flatMap
(Function<? super T, ? extends ObservableValue<? extends U>> mapper) Returns anObservableValue
that holds the value of anObservableValue
produced by applying the given mapping function on this value.default <U> ObservableValue
<U> Returns anObservableValue
that holds the result of applying the given mapping function on this value.default ObservableValue
<T> Returns anObservableValue
that holds this value, or the given constant if it isnull
.default ObservableValue
<T> ObservableValue.when
(ObservableValue<Boolean> condition) Returns anObservableValue
that holds this value and is updated only whencondition
holdstrue
.Modifier and TypeMethodDescriptionvoid
ChangeListener.changed
(ObservableValue<? extends T> observable, T oldValue, T newValue) Called when the value of anObservableValue
changes.void
WeakChangeListener.changed
(ObservableValue<? extends T> observable, T oldValue, T newValue) Called when the value of anObservableValue
changes.default ObservableValue
<T> ObservableValue.when
(ObservableValue<Boolean> condition) Returns anObservableValue
that holds this value and is updated only whencondition
holdstrue
.Modifier and TypeMethodDescriptiondefault <U> ObservableValue
<U> ObservableValue.flatMap
(Function<? super T, ? extends ObservableValue<? extends U>> mapper) Returns anObservableValue
that holds the value of anObservableValue
produced by applying the given mapping function on this value. -
Uses of ObservableValue in javafx.css
Modifier and TypeClassDescriptionclass
This class extendsSimpleBooleanProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleDoubleProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleFloatProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleIntegerProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleLongProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleObjectProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleStringProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsDoublePropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsFloatPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsLongPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsObjectPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsStringPropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of ObservableValue in javafx.scene.control
Modifier and TypeInterfaceDescriptionprotected static interface
Interface representing a text input's content.Modifier and TypeMethodDescriptionfinal ObservableValue
<T> TableColumn.getCellObservableValue
(int index) Attempts to return an ObservableValue<T> for the item in the given index (which is of type S).final ObservableValue
<T> TableColumn.getCellObservableValue
(S item) Attempts to return an ObservableValue<T> for the given item (which is of type S).abstract ObservableValue
<T> TableColumnBase.getCellObservableValue
(int index) Attempts to return an ObservableValue<T> for the item in the given index (which is of type S).abstract ObservableValue
<T> TableColumnBase.getCellObservableValue
(S item) Attempts to return an ObservableValue<T> for the given item (which is of type S).final ObservableValue
<T> TreeTableColumn.getCellObservableValue
(int index) Attempts to return an ObservableValue<T> for the item in the given index (which is of type S).final ObservableValue
<T> TreeTableColumn.getCellObservableValue
(TreeItem<S> item) Attempts to return an ObservableValue<T> for the given item (which is of type S).Modifier and TypeMethodDescriptionTableColumn.cellValueFactoryProperty()
The cell value factory needs to be set to specify how to populate all cells within a single TableColumn.TreeTableColumn.cellValueFactoryProperty()
The cell value factory needs to be set to specify how to populate all cells within a single TreeTableColumn.final Callback
<TableColumn.CellDataFeatures<S, T>, ObservableValue<T>> TableColumn.getCellValueFactory()
Gets the value of thecellValueFactory
property.TreeTableColumn.getCellValueFactory()
Gets the value of thecellValueFactory
property.protected final Consumer
<ObservableValue<?>> SkinBase.unregisterChangeListeners
(ObservableValue<?> observable) Unregisters all operations that have been registered usingSkinBase.registerChangeListener(ObservableValue, Consumer)
for the givenobservable
.Modifier and TypeMethodDescriptionprotected final void
SkinBase.registerChangeListener
(ObservableValue<?> observable, Consumer<ObservableValue<?>> operation) Registers an operation to perform when the givenobservable
sends a change event.protected final Consumer
<ObservableValue<?>> SkinBase.unregisterChangeListeners
(ObservableValue<?> observable) Unregisters all operations that have been registered usingSkinBase.registerChangeListener(ObservableValue, Consumer)
for the givenobservable
.Modifier and TypeMethodDescriptionprotected final void
SkinBase.registerChangeListener
(ObservableValue<?> observable, Consumer<ObservableValue<?>> operation) Registers an operation to perform when the givenobservable
sends a change event.final void
TableColumn.setCellValueFactory
(Callback<TableColumn.CellDataFeatures<S, T>, ObservableValue<T>> value) Sets the value of thecellValueFactory
property.final void
TreeTableColumn.setCellValueFactory
(Callback<TreeTableColumn.CellDataFeatures<S, T>, ObservableValue<T>> value) Sets the value of thecellValueFactory
property. -
Uses of ObservableValue in javafx.scene.control.cell
Modifier and TypeMethodDescriptionMapValueFactory.call
(TableColumn.CellDataFeatures<Map, T> cdf) PropertyValueFactory.call
(TableColumn.CellDataFeatures<S, T> param) Thecall
method is called when required, and is given a single argument of type P, with a requirement that an object of type R is returned.TreeItemPropertyValueFactory.call
(TreeTableColumn.CellDataFeatures<S, T> param) Thecall
method is called when required, and is given a single argument of type P, with a requirement that an object of type R is returned.Modifier and TypeMethodDescriptionfinal Callback
<T, ObservableValue<Boolean>> CheckBoxListCell.getSelectedStateCallback()
Returns theCallback
that is bound to by the CheckBox shown on screen.final Callback
<Integer, ObservableValue<Boolean>> CheckBoxTableCell.getSelectedStateCallback()
Returns theCallback
that is bound to by the CheckBox shown on screen.final Callback
<TreeItem<T>, ObservableValue<Boolean>> CheckBoxTreeCell.getSelectedStateCallback()
Returns theCallback
that is bound to by the CheckBox shown on screen.final Callback
<Integer, ObservableValue<Boolean>> CheckBoxTreeTableCell.getSelectedStateCallback()
Returns theCallback
that is bound to by the CheckBox shown on screen.final ObjectProperty
<Callback<T, ObservableValue<Boolean>>> CheckBoxListCell.selectedStateCallbackProperty()
Property representing theCallback
that is bound to by the CheckBox shown on screen.final ObjectProperty
<Callback<Integer, ObservableValue<Boolean>>> CheckBoxTableCell.selectedStateCallbackProperty()
Property representing theCallback
that is bound to by the CheckBox shown on screen.final ObjectProperty
<Callback<TreeItem<T>, ObservableValue<Boolean>>> CheckBoxTreeCell.selectedStateCallbackProperty()
Property representing theCallback
that is bound to by the CheckBox shown on screen.final ObjectProperty
<Callback<Integer, ObservableValue<Boolean>>> CheckBoxTreeTableCell.selectedStateCallbackProperty()
Property representing theCallback
that is bound to by the CheckBox shown on screen.Modifier and TypeMethodDescriptionCheckBoxListCell.forListView
(Callback<T, ObservableValue<Boolean>> getSelectedProperty) Creates a cell factory for use in ListView controls.CheckBoxListCell.forListView
(Callback<T, ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter) Creates a cell factory for use in ListView controls.static <S,
T> Callback <TableColumn<S, T>, TableCell<S, T>> CheckBoxTableCell.forTableColumn
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty) Creates a cell factory for use in aTableColumn
cell factory.static <S,
T> Callback <TableColumn<S, T>, TableCell<S, T>> CheckBoxTableCell.forTableColumn
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty, boolean showLabel) Creates a cell factory for use in aTableColumn
cell factory.static <S,
T> Callback <TableColumn<S, T>, TableCell<S, T>> CheckBoxTableCell.forTableColumn
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter) Creates a cell factory for use in aTableColumn
cell factory.static <S,
T> Callback <TreeTableColumn<S, T>, TreeTableCell<S, T>> CheckBoxTreeTableCell.forTreeTableColumn
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty) Creates a cell factory for use in aTreeTableColumn
cell factory.static <S,
T> Callback <TreeTableColumn<S, T>, TreeTableCell<S, T>> CheckBoxTreeTableCell.forTreeTableColumn
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty, boolean showLabel) Creates a cell factory for use in aTreeTableColumn
cell factory.static <S,
T> Callback <TreeTableColumn<S, T>, TreeTableCell<S, T>> CheckBoxTreeTableCell.forTreeTableColumn
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter) Creates a cell factory for use in aTreeTableColumn
cell factory.CheckBoxTreeCell.forTreeView
(Callback<TreeItem<T>, ObservableValue<Boolean>> getSelectedProperty) Creates a cell factory for use in a TreeView control.CheckBoxTreeCell.forTreeView
(Callback<TreeItem<T>, ObservableValue<Boolean>> getSelectedProperty, StringConverter<TreeItem<T>> converter) Creates a cell factory for use in a TreeView control.final void
CheckBoxListCell.setSelectedStateCallback
(Callback<T, ObservableValue<Boolean>> value) Sets theCallback
that is bound to by the CheckBox shown on screen.final void
CheckBoxTableCell.setSelectedStateCallback
(Callback<Integer, ObservableValue<Boolean>> value) Sets theCallback
that is bound to by the CheckBox shown on screen.final void
CheckBoxTreeCell.setSelectedStateCallback
(Callback<TreeItem<T>, ObservableValue<Boolean>> value) Sets theCallback
that is bound to by the CheckBox shown on screen.final void
CheckBoxTreeTableCell.setSelectedStateCallback
(Callback<Integer, ObservableValue<Boolean>> value) Sets theCallback
that is bound to by the CheckBox shown on screen.ModifierConstructorDescriptionCheckBoxListCell
(Callback<T, ObservableValue<Boolean>> getSelectedProperty) Creates a default CheckBoxListCell.CheckBoxListCell
(Callback<T, ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter) Creates a CheckBoxListCell with a custom string converter.CheckBoxTableCell
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty) Creates a default CheckBoxTableCell with a customCallback
to retrieve an ObservableValue for a given cell index.CheckBoxTableCell
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter) Creates a CheckBoxTableCell with a custom string converter.CheckBoxTreeCell
(Callback<TreeItem<T>, ObservableValue<Boolean>> getSelectedProperty) Creates aCheckBoxTreeCell
for use in a TreeView control via a cell factory.CheckBoxTreeCell
(Callback<TreeItem<T>, ObservableValue<Boolean>> getSelectedProperty, StringConverter<TreeItem<T>> converter) Creates aCheckBoxTreeCell
for use in a TreeView control via a cell factory.CheckBoxTreeTableCell
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty) Creates a default CheckBoxTreeTableCell with a customCallback
to retrieve an ObservableValue for a given cell index.CheckBoxTreeTableCell
(Callback<Integer, ObservableValue<Boolean>> getSelectedProperty, StringConverter<T> converter) Creates a CheckBoxTreeTableCell with a custom string converter.