Uses of Interface
com.healthmarketscience.jackcess.Column
-
-
Uses of Column in com.healthmarketscience.jackcess
Methods in com.healthmarketscience.jackcess that return Column Modifier and Type Method Description ColumnColumnBuilder. addToTable(Table table)Adds a new Column to the given Table with the currently configured attributes.ColumnColumnBuilder. addToTableDefinition(TableDefinition table)Adds a new Column to the given TableDefinition with the currently configured attributes.ColumnIndex.Column. getColumn()ColumnTable. getColumn(String name)ColumnTableDefinition. getColumn(String name)ColumnColumn. getVersionHistoryColumn()Returns the column which tracks the version history for an "append only" column.Methods in com.healthmarketscience.jackcess that return types with arguments of type Column Modifier and Type Method Description List<? extends Column>Table. getColumns()List<? extends Column>TableDefinition. getColumns()List<Column>Relationship. getFromColumns()List<Column>Relationship. getToColumns()Methods in com.healthmarketscience.jackcess with parameters of type Column Modifier and Type Method Description RelationshipBuilderRelationshipBuilder. addColumns(Column fromCol, Column toCol)Adds a pair of columns to the relationship.booleanCursor. currentRowMatches(Column columnPattern, Object valuePattern)Returnstrueif the current row matches the given pattern.booleanCursor. findFirstRow(Column columnPattern, Object valuePattern)Moves to the first row (as defined by the cursor) where the given column has the given value.booleanCursor. findNextRow(Column columnPattern, Object valuePattern)Moves to the next row (as defined by the cursor) where the given column has the given value.static ObjectCursorBuilder. findValue(Index index, Column column, Column columnPattern, Object valuePattern)Convenience method for finding a specific row in a table which matches a given row "pattern".static ObjectCursorBuilder. findValue(Table table, Column column, Column columnPattern, Object valuePattern)Convenience method for finding a specific row in a table which matches a given row "pattern".ObjectCursor. getCurrentRowValue(Column column)Returns the given column from the current row.voidCursor. setCurrentRowValue(Column column, Object value)Updates a single value in the current row.ColumnBuilderColumnBuilder. setFromColumn(Column template)Sets all attributes except name from the given Column template (including all column properties except GUID).CursorBuilderCursorBuilder. setIndexByColumns(Column... columns)Sets an index to use for the cursor by searching the table for an index with exactly the given columns. -
Uses of Column in com.healthmarketscience.jackcess.complex
Methods in com.healthmarketscience.jackcess.complex that return Column Modifier and Type Method Description ColumnComplexValue. getColumn()abstract ColumnComplexValueForeignKey. getColumn() -
Uses of Column in com.healthmarketscience.jackcess.impl
Classes in com.healthmarketscience.jackcess.impl that implement Column Modifier and Type Class Description classColumnImplAccess database column definitionMethods in com.healthmarketscience.jackcess.impl that return types with arguments of type Column Modifier and Type Method Description List<Column>RelationshipImpl. getFromColumns()List<Column>RelationshipImpl. getToColumns()Methods in com.healthmarketscience.jackcess.impl with parameters of type Column Modifier and Type Method Description booleanCursorImpl. currentRowMatches(Column columnPattern, Object valuePattern)booleanCursorImpl. findFirstRow(Column columnPattern, Object valuePattern)booleanCursorImpl. findNextRow(Column columnPattern, Object valuePattern)ObjectCursorImpl. getCurrentRowValue(Column column)voidCursorImpl. setCurrentRowValue(Column column, Object value)voidTableImpl. updateValue(Column column, RowId rowId, Object value)Update the given column's value for the given row id.Constructor parameters in com.healthmarketscience.jackcess.impl with type arguments of type Column Constructor Description RelationshipImpl(String name, Table fromTable, Table toTable, int flags, List<? extends Column> fromCols, List<? extends Column> toCols) -
Uses of Column in com.healthmarketscience.jackcess.impl.complex
Methods in com.healthmarketscience.jackcess.impl.complex that return Column Modifier and Type Method Description ColumnComplexColumnInfoImpl. getColumn()ColumnComplexValueForeignKeyImpl. getColumn()ColumnComplexColumnInfoImpl. getComplexValueForeignKeyColumn()ColumnAttachmentColumnInfoImpl. getFileDataColumn()ColumnAttachmentColumnInfoImpl. getFileFlagsColumn()ColumnAttachmentColumnInfoImpl. getFileNameColumn()ColumnAttachmentColumnInfoImpl. getFileTimeStampColumn()ColumnAttachmentColumnInfoImpl. getFileTypeColumn()ColumnAttachmentColumnInfoImpl. getFileUrlColumn()ColumnVersionHistoryColumnInfoImpl. getModifiedDateColumn()ColumnComplexColumnInfoImpl. getPrimaryKeyColumn()ColumnMultiValueColumnInfoImpl. getValueColumn()ColumnVersionHistoryColumnInfoImpl. getValueColumn()Methods in com.healthmarketscience.jackcess.impl.complex that return types with arguments of type Column Modifier and Type Method Description List<Column>UnsupportedColumnInfoImpl. getValueColumns()Constructors in com.healthmarketscience.jackcess.impl.complex with parameters of type Column Constructor Description AttachmentColumnInfoImpl(Column column, int complexId, Table typeObjTable, Table flatTable)ComplexValueForeignKeyImpl(Column column, int value)MultiValueColumnInfoImpl(Column column, int complexId, Table typeObjTable, Table flatTable)UnsupportedColumnInfoImpl(Column column, int complexId, Table typeObjTable, Table flatTable)VersionHistoryColumnInfoImpl(Column column, int complexId, Table typeObjTable, Table flatTable) -
Uses of Column in com.healthmarketscience.jackcess.util
Methods in com.healthmarketscience.jackcess.util that return types with arguments of type Column Modifier and Type Method Description List<Column>ExportFilter. filterColumns(List<Column> columns)The columns that should be used to create the exported file.List<Column>SimpleExportFilter. filterColumns(List<Column> columns)Methods in com.healthmarketscience.jackcess.util with parameters of type Column Modifier and Type Method Description ColumnValidatorColumnValidatorFactory. createValidator(Column col)Returns a ColumnValidator instance for the given column, ornullif the default should be used.ColumnValidatorSimpleColumnValidatorFactory. createValidator(Column col)ObjectDebugErrorHandler. handleRowError(Column column, byte[] columnData, ErrorHandler.Location location, Exception error)ObjectErrorHandler. handleRowError(Column column, byte[] columnData, ErrorHandler.Location location, Exception error)Handles an error encountered while reading a column of data from a Table row.ObjectReplacementErrorHandler. handleRowError(Column column, byte[] columnData, ErrorHandler.Location location, Exception error)static RowFilterRowFilter. matchPattern(Column columnPattern, Object valuePattern)Creates a filter based on a single value row pattern.IterableBuilderIterableBuilder. setMatchPattern(Column columnPattern, Object valuePattern)ObjectColumnValidator. validate(Column col, Object val)Validates and/or manipulates the given potential new value for the given column.ObjectSimpleColumnValidator. validate(Column col, Object val)Method parameters in com.healthmarketscience.jackcess.util with type arguments of type Column Modifier and Type Method Description EntryIterableBuilderEntryIterableBuilder. addColumns(Iterable<? extends Column> cols)IterableBuilderIterableBuilder. addColumns(Iterable<? extends Column> cols)List<Column>ExportFilter. filterColumns(List<Column> columns)The columns that should be used to create the exported file.List<Column>SimpleExportFilter. filterColumns(List<Column> columns)Constructors in com.healthmarketscience.jackcess.util with parameters of type Column Constructor Description ColumnFormatter(Column col)
-