|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.healthmarketscience.jackcess.IndexBuilder
public class IndexBuilder
Builder style class for constructing an Index. See TableBuilder for example usage. Additionally, an Index can be added to an
existing Table using the addToTable(Table) method.
TableBuilder| Nested Class Summary | |
|---|---|
static class |
IndexBuilder.Column
Information about a column in this index (name and ordering). |
| Field Summary | |
|---|---|
static String |
PRIMARY_KEY_NAME
name typically used by MS Access for the primary key index |
| Constructor Summary | |
|---|---|
IndexBuilder(String name)
|
|
| Method Summary | |
|---|---|
IndexBuilder |
addColumns(boolean ascending,
String... names)
Adds the columns with the given ordering to the index. |
IndexBuilder |
addColumns(String... names)
Adds the columns with ASCENDING ordering to the index. |
Index |
addToTable(Table table)
Adds a new Index to the given Table with the currently configured attributes. |
List<IndexBuilder.Column> |
getColumns()
|
byte |
getFlags()
|
int |
getIndexNumber()
|
String |
getName()
|
byte |
getType()
|
boolean |
isIgnoreNulls()
|
boolean |
isPrimaryKey()
|
boolean |
isUnique()
|
IndexBuilder |
setIgnoreNulls()
Sets this index to ignore null values. |
void |
setIndexNumber(int newIndexNumber)
|
IndexBuilder |
setName(String name)
Sets the name of the index. |
IndexBuilder |
setPrimaryKey()
Sets this index to be a primary key index (additionally sets the index as unique and required). |
IndexBuilder |
setRequired()
Sets this index to encforce required. |
IndexBuilder |
setType(byte type)
|
IndexBuilder |
setUnique()
Sets this index to enforce uniqueness. |
void |
validate(Set<String> tableColNames,
JetFormat format)
Checks that this index definition is valid. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final String PRIMARY_KEY_NAME
| Constructor Detail |
|---|
public IndexBuilder(String name)
| Method Detail |
|---|
public String getName()
public byte getType()
public byte getFlags()
public boolean isPrimaryKey()
public boolean isUnique()
public boolean isIgnoreNulls()
public List<IndexBuilder.Column> getColumns()
public IndexBuilder setName(String name)
public IndexBuilder addColumns(String... names)
public IndexBuilder addColumns(boolean ascending,
String... names)
public IndexBuilder setPrimaryKey()
public IndexBuilder setType(byte type)
public IndexBuilder setUnique()
public IndexBuilder setRequired()
public IndexBuilder setIgnoreNulls()
public int getIndexNumber()
public void setIndexNumber(int newIndexNumber)
public void validate(Set<String> tableColNames,
JetFormat format)
IllegalArgumentException - if this index definition is invalid.
public Index addToTable(Table table)
throws IOException
IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||