Enum Class TdbBatchJobType
- All Implemented Interfaces:
Serializable,Comparable<TdbBatchJobType>,Constable
Job type of batch job submissions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndex a database.Load a TFORM file into a database without indexing.Load a TFORM file into a database and index it normally afterwards.Load a TFORM file into a database and completely regenerate its indexes afterwards.Complete regenerate the indexes of a database. -
Method Summary
Modifier and TypeMethodDescriptionstatic TdbBatchJobTypefromValue(int value) Get the enum instance that corresponds to a given integer representation.intgetValue()Get the integer representation of the enumerated valuestatic TdbBatchJobTypeReturns the enum constant of this class with the specified name.static TdbBatchJobType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
INDEX
Index a database. Modified and new records will be processed. -
REINDEX
Complete regenerate the indexes of 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.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public int getValue()Get the integer representation of the enumerated value -
fromValue
Get the enum instance that corresponds to a given integer representation.- Throws:
TdbException- if an invalid integer was specified
-