|
||||||||||
| 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.
| 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. |
List<IndexBuilder.Column> |
getColumns()
|
byte |
getFlags()
|
String |
getName()
|
byte |
getType()
|
boolean |
isIgnoreNulls()
|
boolean |
isPrimaryKey()
|
boolean |
isUnique()
|
IndexBuilder |
setIgnoreNulls()
Sets this index to ignore null values. |
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). |
IndexBuilder |
setUnique()
Sets this index to enforce uniqueness. |
void |
validate(Set<String> tableColNames)
|
| Methods inherited from class java.lang.Object |
|---|
equals, 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 setUnique()
public IndexBuilder setIgnoreNulls()
public void validate(Set<String> tableColNames)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||