org.pentaho.di.core.logging
Enum TransLogTable.ID
java.lang.Object
java.lang.Enum<TransLogTable.ID>
org.pentaho.di.core.logging.TransLogTable.ID
- All Implemented Interfaces:
- Serializable, Comparable<TransLogTable.ID>
- Enclosing class:
- TransLogTable
public static enum TransLogTable.ID
- extends Enum<TransLogTable.ID>
ID_BATCH
public static final TransLogTable.ID ID_BATCH
CHANNEL_ID
public static final TransLogTable.ID CHANNEL_ID
TRANSNAME
public static final TransLogTable.ID TRANSNAME
STATUS
public static final TransLogTable.ID STATUS
LINES_READ
public static final TransLogTable.ID LINES_READ
LINES_WRITTEN
public static final TransLogTable.ID LINES_WRITTEN
LINES_UPDATED
public static final TransLogTable.ID LINES_UPDATED
LINES_INPUT
public static final TransLogTable.ID LINES_INPUT
LINES_OUTPUT
public static final TransLogTable.ID LINES_OUTPUT
LINES_REJECTED
public static final TransLogTable.ID LINES_REJECTED
ERRORS
public static final TransLogTable.ID ERRORS
STARTDATE
public static final TransLogTable.ID STARTDATE
ENDDATE
public static final TransLogTable.ID ENDDATE
LOGDATE
public static final TransLogTable.ID LOGDATE
DEPDATE
public static final TransLogTable.ID DEPDATE
REPLAYDATE
public static final TransLogTable.ID REPLAYDATE
LOG_FIELD
public static final TransLogTable.ID LOG_FIELD
values
public static TransLogTable.ID[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (TransLogTable.ID c : TransLogTable.ID.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TransLogTable.ID valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (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 type has no constant
with the specified name
NullPointerException
- if the argument is null
toString
public String toString()
- Overrides:
toString
in class Enum<TransLogTable.ID>