Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.hsqldb.Index

Uses of Index in org.hsqldb
 

Fields in org.hsqldb declared as Index
private  Index TableFilter.iIndex
           
(package private)  Index ConstraintCore.iMain
           
(package private)  Index ConstraintCore.iRef
           
 

Methods in org.hsqldb that return Index
(package private)  Index TextTable.createIndexPrivate(int[] column, HsqlName name, boolean unique)
          Method declaration
(package private)  Index TableWorks.createIndex(int[] col, HsqlName name, boolean unique)
          Because of the way indexes and column data are held in memory and on disk, it is necessary to recreate the table when an index is added to a non-empty table.
(package private)  Index Table.getConstraintIndexForColumns(int[] col, boolean unique)
          Get the index supporting a constraint that can be used as an index of the given type and index column signature.
(package private)  Index Table.getPrimaryIndex()
          Method declaration
(package private)  Index Table.getIndexForColumn(int column)
          Method declaration
(package private)  Index Table.getIndexForColumns(int[] col, boolean unique)
          Finds an existing index for a foreign key column group
(package private)  Index Table.getNextIndex(Index index)
          Method declaration
private  Index Table.createAdjustedIndex(Index index, int colindex, int adjust)
          Create new index taking into account removal or addition a column of the table.
(package private)  Index Table.createIndexPrivate(int[] column, HsqlName name, boolean unique)
          Method declaration
(package private)  Index Table.getIndex(java.lang.String s)
          Method declaration
protected  Index Table.getIndex(int i)
          Method declaration
private  Index Database.findIndex(java.lang.String name)
          Finds an index with the given name in the whole database.
(package private)  Index Constraint.getMainIndex()
           
(package private)  Index Constraint.getRefIndex()
           
 

Methods in org.hsqldb with parameters of type Index
(package private)  Index Table.getNextIndex(Index index)
          Method declaration
private  Index Table.createAdjustedIndex(Index index, int colindex, int adjust)
          Create new index taking into account removal or addition a column of the table.
(package private)  boolean Index.isEquivalent(Index index)
          Method declaration
(package private)  boolean Constraint.isIndexFK(Index index)
          See if an index is part this constraint and the constraint is set for a foreign key.
(package private)  boolean Constraint.isIndexUnique(Index index)
          See if an index is part this constraint and the constraint is set for a unique constraint.
 

Constructors in org.hsqldb with parameters of type Index
Constraint(HsqlName name, Table t, Index index)
          Constructor declaration
Constraint(HsqlName pkname, HsqlName fkname, Table main, Table ref, int[] colmain, int[] colref, Index imain, Index iref, boolean cascade)
          Constructor for foreign key constraints