javafx.scene.control
Class TablePositionBase<TC extends TableColumnBase>
- javafx.scene.control.TablePositionBase<TC>
Direct Known Subclasses:
public abstract class TablePositionBase<TC extends TableColumnBase> extends Object
This class is used to represent a single row/column/cell in a table. Concrete subclasses of this abstract class are used in the
TableView and TreeTableView APIs to represent which rows/columns/cells are currently selected, focused, being edited, etc. Note that this class is immutable once it is created. Because the TableView and TreeTableView controls can have different selection modes, the row and column properties in TablePositionBase can be 'disabled' to represent an entire row or column. This is done by setting the unrequired property to -1 or null.
Since:
JavaFX 8.0
See Also:
-
Constructor Summary
Constructors Modifier Constructor and Description protectedTablePositionBase(int row, TC tableColumn)Constructs a TablePositionBase instance to represent the given row/column position in the underlying table instance (which is not part of the abstract TablePositionBase class, but is part of concrete subclasses such asTablePositionandTreeTablePosition).
-
Method Summary
All MethodsInstance MethodsAbstract MethodsConcrete Methods Modifier and Type Method and Description booleanequals(Object obj)Indicates whether some other object is "equal to" this one.abstract intgetColumn()The column index that this TablePosition represents in the TableView.intgetRow()The row that this TablePosition represents in the TableView.TCgetTableColumn()The TableColumn that this TablePosition represents in the TableView.inthashCode()Returns a hash code for thisTablePositionobject.
-
Constructor Detail
-
TablePositionBase
protected TablePositionBase(int row, TC tableColumn)Constructs a TablePositionBase instance to represent the given row/column position in the underlying table instance (which is not part of the abstract TablePositionBase class, but is part of concrete subclasses such asTablePositionandTreeTablePosition). In all cases, all fields inside TablePositionBase instances are referenced weakly so as to prevent memory leaks. This means that it is possible (but unlikely) that the get methods will return null.Parameters:
row- The row that this TablePosition is representing.
-
-
Method Detail
-
getRow
public int getRow()
The row that this TablePosition represents in the TableView.
-
getColumn
public abstract int getColumn()
The column index that this TablePosition represents in the TableView. It is -1 if the TableView or TableColumn instances are null.
-
getTableColumn
public TC getTableColumn()
The TableColumn that this TablePosition represents in the TableView.
-
equals
public boolean equals(Object obj)
Indicates whether some other object is "equal to" this one.
-
hashCode
public int hashCode()
Returns a hash code for thisTablePositionobject.
-
© 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.