public enum TdbBatchJobType extends java.lang.Enum<TdbBatchJobType>
TdbDatabaseDesign.submitBatchJob()| Enum Constant and Description |
|---|
INDEX
Index a database.
|
LOAD
Load a TFORM file into a database without indexing.
|
LOAD_INDEX
Load a TFORM file into a database and index it normally afterwards.
|
LOAD_REINDEX
Load a TFORM file into a database and completely regenerate its indexes afterwards.
|
REINDEX
Complete regenerate the indexes of a database.
|
| Modifier and Type | Method and Description |
|---|---|
static TdbBatchJobType |
fromValue(int value)
Get the enum instance that corresponds to a given integer representation.
|
int |
getValue()
Get the integer representation of the enumerated value
|
static TdbBatchJobType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbBatchJobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbBatchJobType INDEX
public static final TdbBatchJobType REINDEX
public static final TdbBatchJobType LOAD
public static final TdbBatchJobType LOAD_INDEX
public static final TdbBatchJobType LOAD_REINDEX
public static TdbBatchJobType[] values()
for (TdbBatchJobType c : TdbBatchJobType.values()) System.out.println(c);
public static TdbBatchJobType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static TdbBatchJobType fromValue(int value) throws TdbException
TdbException - if an invalid integer was specified