Package org.pentaho.di.core.logging
Enum JobLogTable.ID
- java.lang.Object
-
- java.lang.Enum<JobLogTable.ID>
-
- org.pentaho.di.core.logging.JobLogTable.ID
-
- All Implemented Interfaces:
Serializable
,Comparable<JobLogTable.ID>
- Enclosing class:
- JobLogTable
public static enum JobLogTable.ID extends Enum<JobLogTable.ID>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHANNEL_ID
CLIENT
DEPDATE
ENDDATE
ERRORS
EXECUTING_SERVER
EXECUTING_USER
ID_JOB
JOBNAME
LINES_INPUT
LINES_OUTPUT
LINES_READ
LINES_REJECTED
LINES_UPDATED
LINES_WRITTEN
LOG_FIELD
LOGDATE
REPLAYDATE
START_JOB_ENTRY
STARTDATE
STATUS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static JobLogTable.ID
valueOf(String name)
Returns the enum constant of this type with the specified name.static JobLogTable.ID[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID_JOB
public static final JobLogTable.ID ID_JOB
-
CHANNEL_ID
public static final JobLogTable.ID CHANNEL_ID
-
JOBNAME
public static final JobLogTable.ID JOBNAME
-
STATUS
public static final JobLogTable.ID STATUS
-
LINES_READ
public static final JobLogTable.ID LINES_READ
-
LINES_WRITTEN
public static final JobLogTable.ID LINES_WRITTEN
-
LINES_UPDATED
public static final JobLogTable.ID LINES_UPDATED
-
LINES_INPUT
public static final JobLogTable.ID LINES_INPUT
-
LINES_OUTPUT
public static final JobLogTable.ID LINES_OUTPUT
-
LINES_REJECTED
public static final JobLogTable.ID LINES_REJECTED
-
ERRORS
public static final JobLogTable.ID ERRORS
-
STARTDATE
public static final JobLogTable.ID STARTDATE
-
ENDDATE
public static final JobLogTable.ID ENDDATE
-
LOGDATE
public static final JobLogTable.ID LOGDATE
-
DEPDATE
public static final JobLogTable.ID DEPDATE
-
REPLAYDATE
public static final JobLogTable.ID REPLAYDATE
-
LOG_FIELD
public static final JobLogTable.ID LOG_FIELD
-
EXECUTING_SERVER
public static final JobLogTable.ID EXECUTING_SERVER
-
EXECUTING_USER
public static final JobLogTable.ID EXECUTING_USER
-
START_JOB_ENTRY
public static final JobLogTable.ID START_JOB_ENTRY
-
CLIENT
public static final JobLogTable.ID CLIENT
-
-
Method Detail
-
values
public static JobLogTable.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 (JobLogTable.ID c : JobLogTable.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 JobLogTable.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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<JobLogTable.ID>
-
-