Uses of Class
com.healthmarketscience.jackcess.Column

Uses of Column in com.healthmarketscience.jackcess
 

Methods in com.healthmarketscience.jackcess that return Column
 Column Index.ColumnDescriptor.getColumn()
           
 Column Table.getColumn(String name)
           
 Column ColumnBuilder.toColumn()
          Creates a new Column with the currently configured attributes.
 

Methods in com.healthmarketscience.jackcess that return types with arguments of type Column
 List<Column> SimpleImportFilter.filterColumns(List<Column> destColumns, ResultSetMetaData srcColumns)
           
 List<Column> ImportFilter.filterColumns(List<Column> destColumns, ResultSetMetaData srcColumns)
          The columns that should be used to create the imported table.
 List<Column> Table.getColumns()
           
 List<Column> Relationship.getFromColumns()
           
 List<Column> Relationship.getToColumns()
           
 

Methods in com.healthmarketscience.jackcess with parameters of type Column
 TableBuilder TableBuilder.addColumn(Column column)
          Adds a Column to the new table.
 int Column.compareTo(Column other)
           
 boolean Cursor.currentRowMatches(Column columnPattern, Object valuePattern)
          Returns true if the current row matches the given pattern.
 boolean Cursor.findRow(Column columnPattern, Object valuePattern)
          Moves to the first row (as defined by the cursor) where the given column has the given value.
static Object Cursor.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".
static Object Cursor.findValue(Table table, Index index, Column column, Column columnPattern, Object valuePattern)
          Convenience method for finding a specific row in a table which matches a given row "pattern".
 Object Cursor.getCurrentRowValue(Column column)
          Returns the given column from the current row.
 Object Table.getRowValue(Table.RowState rowState, RowId rowId, Column column)
          Reads a single column from the given row.
 boolean NullMask.isNull(Column column)
           
 void NullMask.markNotNull(Column column)
          Indicate that the column with the given number is not null (or a boolean value is true).
 ColumnBuilder ColumnBuilder.setFromColumn(Column template)
          Sets all attributes except name from the given Column template.
 CursorBuilder CursorBuilder.setIndexByColumns(Column... columns)
          Sets an index to use for the cursor by searching the table for an index with exactly the given columns.
 

Method parameters in com.healthmarketscience.jackcess with type arguments of type Column
static int Table.countAutoNumberColumns(Collection<Column> columns)
           
static short Column.countNonLongVariableLength(List<Column> columns)
           
static short Column.countVariableLength(List<Column> columns)
           
 void Database.createTable(String name, List<Column> columns)
          Create a new table in this database
 List<Column> SimpleImportFilter.filterColumns(List<Column> destColumns, ResultSetMetaData srcColumns)
           
 List<Column> ImportFilter.filterColumns(List<Column> destColumns, ResultSetMetaData srcColumns)
          The columns that should be used to create the imported table.
 void Index.read(ByteBuffer tableBuffer, List<Column> availableColumns)
          Read the index info from a tableBuffer
static int Table.writeTableDefinition(List<Column> columns, PageChannel pageChannel, JetFormat format)
          Writes a new table defined by the given columns to the database.
 



Copyright © 2005-2008 Health Market Science. All Rights Reserved.