public class IndexBuilder extends Object
Index
. See TableBuilder
for example usage.Modifier and Type | Class and Description |
---|---|
static class |
IndexBuilder.Column
Information about a column in this index (name and ordering).
|
Modifier and Type | Field and Description |
---|---|
static String |
PRIMARY_KEY_NAME
name typically used by MS Access for the primary key index
|
Constructor and Description |
---|
IndexBuilder(String name) |
Modifier and Type | Method and Description |
---|---|
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,
JetFormat format) |
public static final String PRIMARY_KEY_NAME
public IndexBuilder(String name)
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()
Copyright © 2005–2018. All rights reserved.