Uses of Class
adams.data.spreadsheet.Cell.ContentType
-
-
Uses of Cell.ContentType in adams.data.io.input
Fields in adams.data.io.input declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentType[]CsvSpreadSheetReader.ChunkReader. m_AutoTypesthe automatically determined column types.protected Cell.ContentType[]ExcelStreamingSpreadSheetReader. m_CellStringContentTypethe corresponding types.protected Cell.ContentType[]ExcelStreamingSpreadSheetReader. m_CellTypeContentTypethe corresponding types.protected Cell.ContentTypeExcelStreamingSpreadSheetReader.SheetHandler. m_ContentTypewhat type the current cell is.Fields in adams.data.io.input with type parameters of type Cell.ContentType Modifier and Type Field Description protected HashMap<String,Cell.ContentType>ExcelStreamingSpreadSheetReader.SheetHandler. m_CellStringsthe cell-strings.protected HashMap<String,Cell.ContentType>ExcelStreamingSpreadSheetReader.SheetHandler. m_CellTypesthe cell-types.Methods in adams.data.io.input that return Cell.ContentType Modifier and Type Method Description Cell.ContentType[]ExcelStreamingSpreadSheetReader. getCellStringContentType()Returns the array of cell string content types.Cell.ContentType[]ExcelStreamingSpreadSheetReader. getCellTypeContentType()Returns the array of cell type content types.Methods in adams.data.io.input with parameters of type Cell.ContentType Modifier and Type Method Description voidExcelStreamingSpreadSheetReader. setCellStringContentType(Cell.ContentType[] value)Sets the array of cell string content types.voidExcelStreamingSpreadSheetReader. setCellTypeContentType(Cell.ContentType[] value)Sets the array of cell type content types. -
Uses of Cell.ContentType in adams.data.io.output
Fields in adams.data.io.output declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentType[]SqlDumpSpreadSheetWriter. m_Typesthe type used for the table.Method parameters in adams.data.io.output with type arguments of type Cell.ContentType Modifier and Type Method Description protected voidSimpleArffSpreadSheetWriter. cleanUpTypes(HashSet<Cell.ContentType> cellTypes)Cleans up the cell types. -
Uses of Cell.ContentType in adams.data.spreadsheet
Fields in adams.data.spreadsheet declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentTypeDoubleCell. m_ContentTypewhether the content is numeric.protected Cell.ContentTypeFloatCell. m_ContentTypewhether the content is numeric.Methods in adams.data.spreadsheet that return Cell.ContentType Modifier and Type Method Description Cell.ContentTypeCell. getContentType()Returns the content type.Cell.ContentTypeCellView. getContentType()Returns the content type.Cell.ContentTypeDefaultSpreadSheet. getContentType(int columnIndex)Returns the pure content type of the given column, if available.Cell.ContentTypeDoubleCell. getContentType()Returns the content type.Cell.ContentTypeFloatCell. getContentType()Returns the content type.Cell.ContentTypeSpreadSheet. getContentType(int columnIndex)Returns the pure content type of the given column, if available.Cell.ContentTypeSpreadSheetView. getContentType(int columnIndex)Returns the pure content type of the given column, if available.Cell.ContentTypeCell.ContentType. parse(String s)Parses the given string and returns the associated enum.static Cell.ContentTypeCell.ContentType. valueOf(String name)Returns the enum constant of this type with the specified name.static Cell.ContentType[]Cell.ContentType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in adams.data.spreadsheet that return types with arguments of type Cell.ContentType Modifier and Type Method Description Collection<Cell.ContentType>DefaultSpreadSheet. getContentTypes(int columnIndex)Returns the all content types of the given column, if available.Collection<Cell.ContentType>SpreadSheet. getContentTypes(int columnIndex)Returns the all content types of the given column, if available.Collection<Cell.ContentType>SpreadSheetView. getContentTypes(int columnIndex)Returns the all content types of the given column, if available.Methods in adams.data.spreadsheet with parameters of type Cell.ContentType Modifier and Type Method Description booleanDefaultSpreadSheet. isContentType(int columnIndex, Cell.ContentType type)Checks whether the given column is of the specific content type or not.booleanSpreadSheet. isContentType(int columnIndex, Cell.ContentType type)Checks whether the given column is of the specific content type or not.booleanSpreadSheetView. isContentType(int columnIndex, Cell.ContentType type)Checks whether the given column is of the specific content type or not.ObjectCell. parseContent(String value, Cell.ContentType type)Parses the content of the cell using the specified type.ObjectCellView. parseContent(String value, Cell.ContentType type)Parses the content of the cell using the specified type.ObjectDoubleCell. parseContent(String value, Cell.ContentType type)Parses the content of the cell using the specified type.ObjectFloatCell. parseContent(String value, Cell.ContentType type)Parses the content of the cell using the specified type.CellCell. setContentAs(String value, Cell.ContentType type)Sets the content of the cell, trying to parse the content using the specified content type.CellCellView. setContentAs(String value, Cell.ContentType type)Sets the content of the cell, trying to parse the content using the specified content type.CellDoubleCell. setContentAs(String value, Cell.ContentType type)Sets the content of the cell, trying to parse the content using the specified content type.CellFloatCell. setContentAs(String value, Cell.ContentType type)Sets the content of the cell, trying to parse the content using the specified content type. -
Uses of Cell.ContentType in adams.data.spreadsheet.cellfinder
Fields in adams.data.spreadsheet.cellfinder declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentTypeCellTypeRange. m_Typethe type to look for.protected Cell.ContentTypeTypeRangeIterator. m_Typethe cell type to look for.Methods in adams.data.spreadsheet.cellfinder that return Cell.ContentType Modifier and Type Method Description Cell.ContentTypeCellTypeRange. getType()Returns the cell type to locate.Methods in adams.data.spreadsheet.cellfinder with parameters of type Cell.ContentType Modifier and Type Method Description voidCellTypeRange. setType(Cell.ContentType value)Sets the cell type to locate.Constructors in adams.data.spreadsheet.cellfinder with parameters of type Cell.ContentType Constructor Description TypeRangeIterator(Row sheetRow, Cell.ContentType type, int[] cols)Initializes the iterator.TypeRangeIterator(SpreadSheet sheet, Cell.ContentType type, int[] rows, int[] cols)Initializes the iterator. -
Uses of Cell.ContentType in adams.data.spreadsheet.columnfinder
Fields in adams.data.spreadsheet.columnfinder declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentType[]ByContentType. m_ContentTypesthe regular expression to match the attribute names against.Methods in adams.data.spreadsheet.columnfinder that return Cell.ContentType Modifier and Type Method Description Cell.ContentType[]ByContentType. getContentTypes()Returns the content types that the columns can have.Methods in adams.data.spreadsheet.columnfinder with parameters of type Cell.ContentType Modifier and Type Method Description voidByContentType. setContentTypes(Cell.ContentType[] value)Sets the content types that the columns can have. -
Uses of Cell.ContentType in adams.data.spreadsheet.rowfinder
Fields in adams.data.spreadsheet.rowfinder declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentTypeByContentType. m_ContentTypethe content type to look for.Methods in adams.data.spreadsheet.rowfinder that return Cell.ContentType Modifier and Type Method Description Cell.ContentTypeByContentType. getContentType()Returns the content type to look for.Methods in adams.data.spreadsheet.rowfinder with parameters of type Cell.ContentType Modifier and Type Method Description voidByContentType. setContentType(Cell.ContentType value)Sets the content type to look for. -
Uses of Cell.ContentType in adams.data.spreadsheet.sql
Fields in adams.data.spreadsheet.sql declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentType[]Writer. m_ContentTypesthe type used for the table.Methods in adams.data.spreadsheet.sql that return Cell.ContentType Modifier and Type Method Description Cell.ContentType[]Writer. getContentTypes()Returns the content types of the columns.abstract Cell.ContentTypeAbstractTypeMapper. sqlTypeToContentType(int colType)Determines theCell.ContentTypefrom the SQL column type.Cell.ContentTypeDefaultTypeMapper. sqlTypeToContentType(int colType)Determines theCell.ContentTypefrom the SQL column type.Methods in adams.data.spreadsheet.sql with parameters of type Cell.ContentType Modifier and Type Method Description abstract StringAbstractTypeMapper. contentTypeToSqlCreateType(Cell.ContentType contentType, String stringType)Returns the column type used for create table statements.StringDefaultTypeMapper. contentTypeToSqlCreateType(Cell.ContentType contentType, String stringType)Returns the column type used for create table statements.StringMSSQLServerTypeMapper. contentTypeToSqlCreateType(Cell.ContentType contentType, String stringType)Returns the column type used for create table statements.abstract intAbstractTypeMapper. contentTypeToSqlType(Cell.ContentType contentType)Returns the SQL type corresponding to the cell content type.intDefaultTypeMapper. contentTypeToSqlType(Cell.ContentType contentType)Returns the SQL type corresponding to the cell content type. -
Uses of Cell.ContentType in adams.flow.sink
Fields in adams.flow.sink declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentType[]SpreadSheetDbWriter. m_Typesthe type used for the table. -
Uses of Cell.ContentType in adams.flow.transformer
Fields in adams.flow.transformer declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentTypeSpreadSheetTransformCells. m_InputTypethe input type.protected Cell.ContentTypeSpreadSheetTransformHeaderCells. m_InputTypethe input type.protected Cell.ContentTypeSpreadSheetConvertCells. m_MissingReplacementTypethe data type of the replacement value.protected Cell.ContentTypeSpreadSheetConvertHeaderCells. m_MissingReplacementTypethe data type of the replacement value.protected Cell.ContentTypeSpreadSheetTransformCells. m_MissingReplacementTypethe data type of the replacement value.protected Cell.ContentTypeSpreadSheetTransformHeaderCells. m_MissingReplacementTypethe data type of the replacement value.Methods in adams.flow.transformer that return Cell.ContentType Modifier and Type Method Description Cell.ContentTypeSpreadSheetTransformCells. getInputType()Returns the input type to enforce.Cell.ContentTypeSpreadSheetTransformHeaderCells. getInputType()Returns the input type to enforce.Cell.ContentTypeSpreadSheetConvertCells. getMissingReplacementType()Returns the data type of the replacement value.Cell.ContentTypeSpreadSheetConvertHeaderCells. getMissingReplacementType()Returns the data type of the replacement value.Cell.ContentTypeSpreadSheetTransformCells. getMissingReplacementType()Returns the data type of the replacement value.Cell.ContentTypeSpreadSheetTransformHeaderCells. getMissingReplacementType()Returns the data type of the replacement value.Methods in adams.flow.transformer with parameters of type Cell.ContentType Modifier and Type Method Description voidSpreadSheetTransformCells. setInputType(Cell.ContentType value)Sets the input type to enforce.voidSpreadSheetTransformHeaderCells. setInputType(Cell.ContentType value)Sets the input type to enforce.voidSpreadSheetConvertCells. setMissingReplacementType(Cell.ContentType value)Sets the data type of the replacement value.voidSpreadSheetConvertHeaderCells. setMissingReplacementType(Cell.ContentType value)Sets the data type of the replacement value.voidSpreadSheetTransformCells. setMissingReplacementType(Cell.ContentType value)Sets the data type of the replacement value.voidSpreadSheetTransformHeaderCells. setMissingReplacementType(Cell.ContentType value)Sets the data type of the replacement value. -
Uses of Cell.ContentType in adams.gui.core
Fields in adams.gui.core declared as Cell.ContentType Modifier and Type Field Description protected Cell.ContentType[]SpreadSheetTableModel. m_ColumnTypethe types of the columns.Methods in adams.gui.core that return Cell.ContentType Modifier and Type Method Description protected Cell.ContentTypeSpreadSheetTableModel. determineContentType(int columnIndex)Determines the content type of the specified column. -
Uses of Cell.ContentType in adams.ml.capabilities
Methods in adams.ml.capabilities with parameters of type Cell.ContentType Modifier and Type Method Description static CapabilityCapabilitiesHelper. contentTypeToCapability(Cell.ContentType type, boolean isClass)Turns the content type of a cell into the corresponding capability. -
Uses of Cell.ContentType in adams.ml.data
Fields in adams.ml.data with type parameters of type Cell.ContentType Modifier and Type Field Description protected Map<String,Collection<Cell.ContentType>>DatasetInfo. m_ColumnTypesthe datatypes per column.Methods in adams.ml.data that return Cell.ContentType Modifier and Type Method Description Cell.ContentTypeDataCellView. getContentType()Returns the content type.Cell.ContentTypeDatasetView. getContentType(int columnIndex)Returns the pure content type of the given column, if available.Cell.ContentTypeInstancesView. getContentType(int columnIndex)Returns the pure content type of the given column, if available.Methods in adams.ml.data that return types with arguments of type Cell.ContentType Modifier and Type Method Description Collection<Cell.ContentType>DatasetInfo. getColumnTypes(int col)Returns the column types for the specified column.Collection<Cell.ContentType>DatasetInfo. getColumnTypes(String colName)Returns the column types for the specified column.Collection<Cell.ContentType>DatasetView. getContentTypes(int columnIndex)Returns the all content types of the given column, if available.Collection<Cell.ContentType>InstancesView. getContentTypes(int columnIndex)Returns the all content types of the given column, if available.Methods in adams.ml.data with parameters of type Cell.ContentType Modifier and Type Method Description booleanDatasetView. isContentType(int columnIndex, Cell.ContentType type)Checks whether the given column is of the specific content type or not.booleanInstancesView. isContentType(int columnIndex, Cell.ContentType type)Checks whether the given column is of the specific content type or not.ObjectDataCellView. parseContent(String value, Cell.ContentType type)Parses the content of the cell using the specified type.CellDataCellView. setContentAs(String value, Cell.ContentType type)Sets the content of the cell, trying to parse the content using the specified content type.
-