javafx.scene.control
Class TableColumn.CellDataFeatures<S,T>
- javafx.scene.control.TableColumn.CellDataFeatures<S,T>
Type Parameters:
S - The TableView type
Enclosing class:
public static class TableColumn.CellDataFeatures<S,T> extends Object
A support class used in TableColumn as a wrapper class to provide all necessary information for a particular
Cell. Once instantiated, this class is immutable.Since:
JavaFX 2.0
-
Constructor Summary
Constructors Constructor and Description CellDataFeatures(TableView<S> tableView, TableColumn<S,T> tableColumn, S value)Instantiates a CellDataFeatures instance with the given properties set as read-only values of this instance.
-
Method Summary
All MethodsInstance MethodsConcrete Methods Modifier and Type Method and Description TableColumn<S,T>getTableColumn()Returns theTableColumnpassed in to the constructor.TableView<S>getTableView()Returns theTableViewpassed in to the constructor.SgetValue()Returns the value passed in to the constructor.
-
Constructor Detail
-
CellDataFeatures
public CellDataFeatures(TableView<S> tableView, TableColumn<S,T> tableColumn, S value)Instantiates a CellDataFeatures instance with the given properties set as read-only values of this instance.Parameters:
tableView- The TableView that this instance refers to.
-
-
Method Detail
-
getValue
public S getValue()
Returns the value passed in to the constructor.
-
getTableColumn
public TableColumn<S,T> getTableColumn()
Returns theTableColumnpassed in to the constructor.
-
getTableView
public TableView<S> getTableView()
Returns theTableViewpassed in to the constructor.
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.