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

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

public static enum ChannelLogTable.ID
extends Enum<ChannelLogTable.ID>


Enum Constant Summary
CHANNEL_ID
           
FILENAME
           
ID_BATCH
           
LOG_DATE
           
LOGGING_OBJECT_TYPE
           
OBJECT_COPY
           
OBJECT_ID
           
OBJECT_NAME
           
OBJECT_REVISION
           
PARENT_CHANNEL_ID
           
REPOSITORY_DIRECTORY
           
ROOT_CHANNEL_ID
           
 
Method Summary
 String toString()
           
static ChannelLogTable.ID valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ChannelLogTable.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 ChannelLogTable.ID ID_BATCH

CHANNEL_ID

public static final ChannelLogTable.ID CHANNEL_ID

LOG_DATE

public static final ChannelLogTable.ID LOG_DATE

LOGGING_OBJECT_TYPE

public static final ChannelLogTable.ID LOGGING_OBJECT_TYPE

OBJECT_NAME

public static final ChannelLogTable.ID OBJECT_NAME

OBJECT_COPY

public static final ChannelLogTable.ID OBJECT_COPY

REPOSITORY_DIRECTORY

public static final ChannelLogTable.ID REPOSITORY_DIRECTORY

FILENAME

public static final ChannelLogTable.ID FILENAME

OBJECT_ID

public static final ChannelLogTable.ID OBJECT_ID

OBJECT_REVISION

public static final ChannelLogTable.ID OBJECT_REVISION

PARENT_CHANNEL_ID

public static final ChannelLogTable.ID PARENT_CHANNEL_ID

ROOT_CHANNEL_ID

public static final ChannelLogTable.ID ROOT_CHANNEL_ID
Method Detail

values

public static ChannelLogTable.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 (ChannelLogTable.ID c : ChannelLogTable.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 ChannelLogTable.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<ChannelLogTable.ID>