org.pentaho.di.core.logging
Enum LoggingObjectType

java.lang.Object
  extended by java.lang.Enum<LoggingObjectType>
      extended by org.pentaho.di.core.logging.LoggingObjectType
All Implemented Interfaces:
Serializable, Comparable<LoggingObjectType>

public enum LoggingObjectType
extends Enum<LoggingObjectType>


Enum Constant Summary
CARTE
           
DATABASE
           
GENERAL
           
JOB
           
JOBENTRY
           
JOBENTRYDIALOG
           
JOBMETA
           
REPOSITORY
           
SERVLET
           
SPOON
           
STEP
           
STEPDIALOG
           
STEPMETA
           
TRANS
           
TRANSMETA
           
 
Method Summary
static LoggingObjectType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LoggingObjectType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TRANS

public static final LoggingObjectType TRANS

STEP

public static final LoggingObjectType STEP

JOB

public static final LoggingObjectType JOB

JOBENTRY

public static final LoggingObjectType JOBENTRY

DATABASE

public static final LoggingObjectType DATABASE

TRANSMETA

public static final LoggingObjectType TRANSMETA

STEPMETA

public static final LoggingObjectType STEPMETA

JOBMETA

public static final LoggingObjectType JOBMETA

SPOON

public static final LoggingObjectType SPOON

STEPDIALOG

public static final LoggingObjectType STEPDIALOG

JOBENTRYDIALOG

public static final LoggingObjectType JOBENTRYDIALOG

CARTE

public static final LoggingObjectType CARTE

SERVLET

public static final LoggingObjectType SERVLET

REPOSITORY

public static final LoggingObjectType REPOSITORY

GENERAL

public static final LoggingObjectType GENERAL
Method Detail

values

public static LoggingObjectType[] 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 (LoggingObjectType c : LoggingObjectType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LoggingObjectType 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