KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > datasystem > indexsystem > _FullTextIndexInformation


1 package com.daffodilwoods.daffodildb.server.datasystem.indexsystem;
2
3 import com.daffodilwoods.database.general.*;
4 import com.daffodilwoods.database.resource.*;
5
6 public interface _FullTextIndexInformation {
7    QualifiedIdentifier getQualifiedIdentifier() throws DException;
8
9    public String JavaDoc[] getColumns() throws DException;
10
11    public int[] getColumnIndexes() throws DException;
12
13    public boolean isVariableColumn() throws DException;
14
15    public QualifiedIdentifier getIndexTableName() throws DException;
16
17    public String JavaDoc getIndexName() throws DException;
18
19    public int getSize() throws DException;
20
21    public Object JavaDoc[][] getColumnInformation() throws DException;
22
23    void update() throws DException;
24
25    public boolean isDefault();
26
27    boolean isUpdated();
28 }
29
Popular Tags