Uses of Interface
org.tentackle.fx.table.TableCellType
-
Packages that use TableCellType Package Description org.tentackle.fx.table FX table support.org.tentackle.fx.table.type FX table cell types. -
-
Uses of TableCellType in org.tentackle.fx.table
Methods in org.tentackle.fx.table that return TableCellType Modifier and Type Method Description <T> TableCellType<T>DefaultTableConfiguration. getCellType(java.lang.Class<T> type)protected TableCellType<T>FxTableCell. getCellType()Gets the table cell type.<T> TableCellType<T>TableConfiguration. getCellType(java.lang.Class<T> type)Gets the cell type according to the item type.<T> TableCellType<T>DefaultTableCellTypeFactory. getTableCellType(java.lang.Class<T> itemClass)<T> TableCellType<T>TableCellTypeFactory. getTableCellType(java.lang.Class<T> itemClass)Gets the table cell type implementation for item class.Methods in org.tentackle.fx.table with parameters of type TableCellType Modifier and Type Method Description protected FxComponentFxTableCell. getEditor(TableCellType<T> cellType)Gets the editor for this table cell. -
Uses of TableCellType in org.tentackle.fx.table.type
Classes in org.tentackle.fx.table.type that implement TableCellType Modifier and Type Class Description classAbstractTableCellType<T>Base class of a table cell type.classBMoneyTableCellTypeA money cell type.
Provided as a fallback to application specific types that don't provide tclassBooleanTableCellTypeA boolean cell type.classDateTableCellTypeDate cell type.classEnumTableCellTypeA boolean cell type.classLocalDateTableCellTypeLocalDate cell type.classLocalDateTimeTableCellTypeLocalDateTime cell type.classLocalTimeTableCellTypeLocalTime cell type.classNumberTableCellType<T extends java.lang.Number>A number cell type.
Provided as a fallback to application specific types that don't provide tclassObjectTableCellTypeThe most simple cell type.
Fallback if type does not correspond to a known cell-type.classStringTableCellTypeThe most simple cell type.
Fallback if type is not known.classTimestampTableCellTypeTimestamp cell type.classTimeTableCellTypeTime cell type.classUtilDateTableCellType<T extends java.util.Date>Base date cell type.
-