- java.lang.Object
- 
- javafx.scene.control.TableColumn.CellDataFeatures<S,T>
 
- 
- Type Parameters:
- S- The TableView type
- T- The TableColumn type
 - Enclosing class:
- TableColumn<S,T>
 
 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 particularCell. Once instantiated, this class is immutable.- Since:
- JavaFX 2.0
 
- 
- 
Constructor SummaryConstructors Constructor 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 SummaryModifier and Type Method 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- 
CellDataFeaturespublic 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.
- tableColumn- The TableColumn that this instance refers to.
- value- The value for a row in the TableView.
 
 
- 
 - 
Method Detail- 
getValuepublic S getValue() Returns the value passed in to the constructor.- Returns:
- the value passed in to the constructor
 
 - 
getTableColumnpublic TableColumn<S,T> getTableColumn() Returns theTableColumnpassed in to the constructor.- Returns:
- the TableColumn passed in to the constructor
 
 
- 
 
-