public static enum IDBIndex.Type extends Enum<IDBIndex.Type>
| Enum Constant and Description |
|---|
NON_UNIQUE |
PRIMARY_KEY |
UNIQUE |
| Modifier and Type | Method and Description |
|---|---|
static IDBIndex.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IDBIndex.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IDBIndex.Type PRIMARY_KEY
public static final IDBIndex.Type UNIQUE
public static final IDBIndex.Type NON_UNIQUE
public static IDBIndex.Type[] values()
for (IDBIndex.Type c : IDBIndex.Type.values()) System.out.println(c);
public static IDBIndex.Type 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 (c) 2011-2015 Eike Stepper (Berlin, Germany) and others.