org.pentaho.di.ui.spoon
Enum TabMapEntry.ObjectType

java.lang.Object
  extended by java.lang.Enum<TabMapEntry.ObjectType>
      extended by org.pentaho.di.ui.spoon.TabMapEntry.ObjectType
All Implemented Interfaces:
Serializable, Comparable<TabMapEntry.ObjectType>
Enclosing class:
TabMapEntry

public static enum TabMapEntry.ObjectType
extends Enum<TabMapEntry.ObjectType>


Enum Constant Summary
BROWSER
           
JOB_GRAPH
           
SLAVE_SERVER
           
TRANSFORMATION_GRAPH
           
 
Method Summary
static TabMapEntry.ObjectType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TabMapEntry.ObjectType[] 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

TRANSFORMATION_GRAPH

public static final TabMapEntry.ObjectType TRANSFORMATION_GRAPH

JOB_GRAPH

public static final TabMapEntry.ObjectType JOB_GRAPH

SLAVE_SERVER

public static final TabMapEntry.ObjectType SLAVE_SERVER

BROWSER

public static final TabMapEntry.ObjectType BROWSER
Method Detail

values

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

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

valueOf

public static TabMapEntry.ObjectType 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