org.pentaho.di.ui.trans.steps.userdefinedjavaclass
Enum UserDefinedJavaClassCodeSnippits.Category

java.lang.Object
  extended by java.lang.Enum<UserDefinedJavaClassCodeSnippits.Category>
      extended by org.pentaho.di.ui.trans.steps.userdefinedjavaclass.UserDefinedJavaClassCodeSnippits.Category
All Implemented Interfaces:
Serializable, Comparable<UserDefinedJavaClassCodeSnippits.Category>
Enclosing class:
UserDefinedJavaClassCodeSnippits

public static enum UserDefinedJavaClassCodeSnippits.Category
extends Enum<UserDefinedJavaClassCodeSnippits.Category>


Enum Constant Summary
COMMON
           
LISTENERS
           
LOGGING
           
OTHER
           
ROW
           
STATUS
           
 
Method Summary
 String getDescription()
           
 String toString()
           
static UserDefinedJavaClassCodeSnippits.Category valueOf(String name)
          Returns the enum constant of this type with the specified name.
static UserDefinedJavaClassCodeSnippits.Category[] 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

COMMON

public static final UserDefinedJavaClassCodeSnippits.Category COMMON

STATUS

public static final UserDefinedJavaClassCodeSnippits.Category STATUS

LOGGING

public static final UserDefinedJavaClassCodeSnippits.Category LOGGING

LISTENERS

public static final UserDefinedJavaClassCodeSnippits.Category LISTENERS

ROW

public static final UserDefinedJavaClassCodeSnippits.Category ROW

OTHER

public static final UserDefinedJavaClassCodeSnippits.Category OTHER
Method Detail

values

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

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

valueOf

public static UserDefinedJavaClassCodeSnippits.Category 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

getDescription

public String getDescription()

toString

public String toString()
Overrides:
toString in class Enum<UserDefinedJavaClassCodeSnippits.Category>