|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Table | |
|---|---|
| com.healthmarketscience.jackcess | |
| com.healthmarketscience.jackcess.impl | |
| com.healthmarketscience.jackcess.impl.complex | |
| com.healthmarketscience.jackcess.util | |
| Uses of Table in com.healthmarketscience.jackcess |
|---|
| Methods in com.healthmarketscience.jackcess that return Table | |
|---|---|
Table |
Relationship.getFromTable()
|
Table |
Database.getSystemTable(String tableName)
Returns a reference to any available table in this access database, including system tables. |
Table |
Column.getTable()
|
Table |
Index.getTable()
|
Table |
Cursor.getTable()
|
Table |
Database.getTable(String name)
|
Table |
Relationship.getToTable()
|
Table |
TableBuilder.toTable(Database db)
Creates a new Table in the given Database with the currently configured attributes. |
| Methods in com.healthmarketscience.jackcess that return types with arguments of type Table | |
|---|---|
Iterator<Table> |
Database.iterator()
|
| Methods in com.healthmarketscience.jackcess with parameters of type Table | |
|---|---|
static Cursor |
CursorBuilder.createCursor(Table table)
Creates a normal, un-indexed cursor for the given table. |
static IndexCursor |
CursorBuilder.createPrimaryKeyCursor(Table table)
Creates an indexed cursor for the primary key cursor of the given table. |
static Row |
CursorBuilder.findRow(Table table,
Map<String,?> rowPattern)
Convenience method for finding a specific row in a table which matches a given row "pattern". |
static Row |
CursorBuilder.findRowByPrimaryKey(Table table,
Object... entryValues)
Convenience method for finding a specific row by the primary key of the table. |
static Object |
CursorBuilder.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". |
Index |
Table.getForeignKeyIndex(Table otherTable)
|
List<Relationship> |
Database.getRelationships(Table table)
Finds all the relationships in the database for the given table. |
List<Relationship> |
Database.getRelationships(Table table1,
Table table2)
Finds all the relationships in the database between the given tables. |
boolean |
Database.isLinkedTable(Table table)
Returns true if this Database links to the given Table, false otherwise. |
| Constructors in com.healthmarketscience.jackcess with parameters of type Table | |
|---|---|
CursorBuilder(Table table)
|
|
| Uses of Table in com.healthmarketscience.jackcess.impl |
|---|
| Classes in com.healthmarketscience.jackcess.impl that implement Table | |
|---|---|
class |
TableImpl
A single database table |
| Methods in com.healthmarketscience.jackcess.impl that return Table | |
|---|---|
Table |
RelationshipImpl.getFromTable()
|
Table |
RelationshipImpl.getToTable()
|
| Methods in com.healthmarketscience.jackcess.impl that return types with arguments of type Table | |
|---|---|
Iterator<Table> |
DatabaseImpl.iterator()
|
Iterator<Table> |
DatabaseImpl.iterator(TableIterableBuilder builder)
|
| Methods in com.healthmarketscience.jackcess.impl with parameters of type Table | |
|---|---|
IndexImpl |
TableImpl.getForeignKeyIndex(Table otherTable)
|
List<Relationship> |
DatabaseImpl.getRelationships(Table table)
|
List<Relationship> |
DatabaseImpl.getRelationships(Table table1,
Table table2)
|
static boolean |
ComplexColumnSupport.isAttachmentColumn(Table typeObjTable)
|
boolean |
DatabaseImpl.isLinkedTable(Table table)
|
static boolean |
ComplexColumnSupport.isMultiValueColumn(Table typeObjTable)
|
static boolean |
ComplexColumnSupport.isVersionHistoryColumn(Table typeObjTable)
|
| Constructors in com.healthmarketscience.jackcess.impl with parameters of type Table | |
|---|---|
RelationshipImpl(String name,
Table fromTable,
Table toTable,
int flags,
int numCols)
|
|
| Uses of Table in com.healthmarketscience.jackcess.impl.complex |
|---|
| Constructors in com.healthmarketscience.jackcess.impl.complex with parameters of type Table | |
|---|---|
AttachmentColumnInfoImpl(Column column,
int complexId,
Table typeObjTable,
Table flatTable)
|
|
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 Table in com.healthmarketscience.jackcess.util |
|---|
| Methods in com.healthmarketscience.jackcess.util that return Table | |
|---|---|
Table |
Joiner.getFromTable()
|
Table |
ErrorHandler.Location.getTable()
|
Table |
Joiner.getToTable()
|
| Methods in com.healthmarketscience.jackcess.util that return types with arguments of type Table | |
|---|---|
Iterator<Table> |
TableIterableBuilder.iterator()
|
| Methods in com.healthmarketscience.jackcess.util with parameters of type Table | |
|---|---|
static Joiner |
Joiner.create(Table fromTable,
Table toTable)
Creates a new Joiner based on the foreign-key relationship between the given "from"" table and the given "to"" table. |
boolean |
CaseInsensitiveColumnMatcher.matches(Table table,
String columnName,
Object value1,
Object value2)
|
boolean |
ColumnMatcher.matches(Table table,
String columnName,
Object value1,
Object value2)
Returns true if the given value1 should be considered a match for
the given value2 for the given column in the given table, false
otherwise. |
boolean |
SimpleColumnMatcher.matches(Table table,
String columnName,
Object value1,
Object value2)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||