Package org.pentaho.di.core.logging
Enum PerformanceLogTable.ID
- java.lang.Object
-
- java.lang.Enum<PerformanceLogTable.ID>
-
- org.pentaho.di.core.logging.PerformanceLogTable.ID
-
- All Implemented Interfaces:
Serializable
,Comparable<PerformanceLogTable.ID>
- Enclosing class:
- PerformanceLogTable
public static enum PerformanceLogTable.ID extends Enum<PerformanceLogTable.ID>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERRORS
ID_BATCH
INPUT_BUFFER_ROWS
LINES_INPUT
LINES_OUTPUT
LINES_READ
LINES_REJECTED
LINES_UPDATED
LINES_WRITTEN
LOGDATE
OUTPUT_BUFFER_ROWS
SEQ_NR
STEP_COPY
STEPNAME
TRANSNAME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static PerformanceLogTable.ID
valueOf(String name)
Returns the enum constant of this type with the specified name.static PerformanceLogTable.ID[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID_BATCH
public static final PerformanceLogTable.ID ID_BATCH
-
SEQ_NR
public static final PerformanceLogTable.ID SEQ_NR
-
LOGDATE
public static final PerformanceLogTable.ID LOGDATE
-
TRANSNAME
public static final PerformanceLogTable.ID TRANSNAME
-
STEPNAME
public static final PerformanceLogTable.ID STEPNAME
-
STEP_COPY
public static final PerformanceLogTable.ID STEP_COPY
-
LINES_READ
public static final PerformanceLogTable.ID LINES_READ
-
LINES_WRITTEN
public static final PerformanceLogTable.ID LINES_WRITTEN
-
LINES_UPDATED
public static final PerformanceLogTable.ID LINES_UPDATED
-
LINES_INPUT
public static final PerformanceLogTable.ID LINES_INPUT
-
LINES_OUTPUT
public static final PerformanceLogTable.ID LINES_OUTPUT
-
LINES_REJECTED
public static final PerformanceLogTable.ID LINES_REJECTED
-
ERRORS
public static final PerformanceLogTable.ID ERRORS
-
INPUT_BUFFER_ROWS
public static final PerformanceLogTable.ID INPUT_BUFFER_ROWS
-
OUTPUT_BUFFER_ROWS
public static final PerformanceLogTable.ID OUTPUT_BUFFER_ROWS
-
-
Method Detail
-
values
public static PerformanceLogTable.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 (PerformanceLogTable.ID c : PerformanceLogTable.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 PerformanceLogTable.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<PerformanceLogTable.ID>
-
-