public static enum Table.IndexType extends Enum<Table.IndexType>
Enum Constant and Description |
---|
FULLTEXT
Fulltext index, may be on several columns.
|
MAIN_NON_PRIMARY
Non primary index but the main one for this table.
|
Modifier and Type | Method and Description |
---|---|
static Table.IndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.IndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.IndexType FULLTEXT
public static final Table.IndexType MAIN_NON_PRIMARY
public static Table.IndexType[] values()
for (Table.IndexType c : Table.IndexType.values()) System.out.println(c);
public static Table.IndexType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2015 Nuxeo SA. All rights reserved.