Uses of Class
org.controlsfx.control.spreadsheet.SpreadsheetCellType
-
Packages that use SpreadsheetCellType Package Description org.controlsfx.control.spreadsheet A package containing model and view related classes used by theSpreadsheetView
control. -
-
Uses of SpreadsheetCellType in org.controlsfx.control.spreadsheet
Subclasses of SpreadsheetCellType in org.controlsfx.control.spreadsheet Modifier and Type Class Description static class
SpreadsheetCellType.DateType
TheSpreadsheetCell
LocalDate
type base class.static class
SpreadsheetCellType.DoubleType
TheSpreadsheetCell
Double
type base class.static class
SpreadsheetCellType.IntegerType
TheSpreadsheetCell
Integer
type base class.static class
SpreadsheetCellType.ListType
TheSpreadsheetCell
List
type base class.static class
SpreadsheetCellType.ObjectType
TheSpreadsheetCell
Object
type base class.static class
SpreadsheetCellType.StringType
TheSpreadsheetCell
String
type base class.Fields in org.controlsfx.control.spreadsheet declared as SpreadsheetCellType Modifier and Type Field Description static SpreadsheetCellType<Object>
SpreadsheetCellType. OBJECT
TheSpreadsheetCell
Object
type instance.Methods in org.controlsfx.control.spreadsheet that return SpreadsheetCellType Modifier and Type Method Description SpreadsheetCellType
SpreadsheetCell. getCellType()
Returns theSpreadsheetCellType
of this cell.SpreadsheetCellType
SpreadsheetCellBase. getCellType()
Returns theSpreadsheetCellType
of this cell.Methods in org.controlsfx.control.spreadsheet with parameters of type SpreadsheetCellType Modifier and Type Method Description Optional<SpreadsheetCellEditor>
SpreadsheetView. getEditor(SpreadsheetCellType<?> cellType)
Return the editor associated with the CellType.Constructors in org.controlsfx.control.spreadsheet with parameters of type SpreadsheetCellType Constructor Description SpreadsheetCellBase(int row, int column, int rowSpan, int columnSpan, SpreadsheetCellType<?> type)
Constructs a SpreadsheetCell with the given configuration.
-