Package org.pentaho.di.core.logging
Enum StepLogTable.ID
- java.lang.Object
- 
- java.lang.Enum<StepLogTable.ID>
- 
- org.pentaho.di.core.logging.StepLogTable.ID
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<StepLogTable.ID>
 - Enclosing class:
- StepLogTable
 
 public static enum StepLogTable.ID extends Enum<StepLogTable.ID> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description CHANNEL_IDERRORSID_BATCHLINES_INPUTLINES_OUTPUTLINES_READLINES_REJECTEDLINES_UPDATEDLINES_WRITTENLOG_DATELOG_FIELDSTEP_COPYSTEPNAMETRANSNAME
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static StepLogTable.IDvalueOf(String name)Returns the enum constant of this type with the specified name.static StepLogTable.ID[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ID_BATCHpublic static final StepLogTable.ID ID_BATCH 
 - 
CHANNEL_IDpublic static final StepLogTable.ID CHANNEL_ID 
 - 
LOG_DATEpublic static final StepLogTable.ID LOG_DATE 
 - 
TRANSNAMEpublic static final StepLogTable.ID TRANSNAME 
 - 
STEPNAMEpublic static final StepLogTable.ID STEPNAME 
 - 
STEP_COPYpublic static final StepLogTable.ID STEP_COPY 
 - 
LINES_READpublic static final StepLogTable.ID LINES_READ 
 - 
LINES_WRITTENpublic static final StepLogTable.ID LINES_WRITTEN 
 - 
LINES_UPDATEDpublic static final StepLogTable.ID LINES_UPDATED 
 - 
LINES_INPUTpublic static final StepLogTable.ID LINES_INPUT 
 - 
LINES_OUTPUTpublic static final StepLogTable.ID LINES_OUTPUT 
 - 
LINES_REJECTEDpublic static final StepLogTable.ID LINES_REJECTED 
 - 
ERRORSpublic static final StepLogTable.ID ERRORS 
 - 
LOG_FIELDpublic static final StepLogTable.ID LOG_FIELD 
 
- 
 - 
Method Detail- 
valuespublic static StepLogTable.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 (StepLogTable.ID c : StepLogTable.ID.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static StepLogTable.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
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<StepLogTable.ID>
 
 
- 
 
-