org.pentaho.di.core.logging
Enum StepLogTable.ID

java.lang.Object
  extended by java.lang.Enum<StepLogTable.ID>
      extended by 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 Summary
CHANNEL_ID
           
ERRORS
           
ID_BATCH
           
LINES_INPUT
           
LINES_OUTPUT
           
LINES_READ
           
LINES_REJECTED
           
LINES_UPDATED
           
LINES_WRITTEN
           
LOG_DATE
           
LOG_FIELD
           
STEP_COPY
           
STEPNAME
           
TRANSNAME
           
 
Method Summary
 String toString()
           
static StepLogTable.ID valueOf(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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ID_BATCH

public static final StepLogTable.ID ID_BATCH

CHANNEL_ID

public static final StepLogTable.ID CHANNEL_ID

LOG_DATE

public static final StepLogTable.ID LOG_DATE

TRANSNAME

public static final StepLogTable.ID TRANSNAME

STEPNAME

public static final StepLogTable.ID STEPNAME

STEP_COPY

public static final StepLogTable.ID STEP_COPY

LINES_READ

public static final StepLogTable.ID LINES_READ

LINES_WRITTEN

public static final StepLogTable.ID LINES_WRITTEN

LINES_UPDATED

public static final StepLogTable.ID LINES_UPDATED

LINES_INPUT

public static final StepLogTable.ID LINES_INPUT

LINES_OUTPUT

public static final StepLogTable.ID LINES_OUTPUT

LINES_REJECTED

public static final StepLogTable.ID LINES_REJECTED

ERRORS

public static final StepLogTable.ID ERRORS

LOG_FIELD

public static final StepLogTable.ID LOG_FIELD
Method Detail

values

public 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

valueOf

public 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

toString

public String toString()
Overrides:
toString in class Enum<StepLogTable.ID>