org.pentaho.di.ui.trans.dialog
Enum TransDialog.Tabs

java.lang.Object
  extended by java.lang.Enum<TransDialog.Tabs>
      extended by org.pentaho.di.ui.trans.dialog.TransDialog.Tabs
All Implemented Interfaces:
Serializable, Comparable<TransDialog.Tabs>
Enclosing class:
TransDialog

public static enum TransDialog.Tabs
extends Enum<TransDialog.Tabs>


Enum Constant Summary
DATE_TAB
           
DEP_TAB
           
LOG_TAB
           
MISC_TAB
           
MONITOR_TAB
           
PARAM_TAB
           
TRANS_TAB
           
 
Method Summary
static TransDialog.Tabs valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TransDialog.Tabs[] 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_TAB

public static final TransDialog.Tabs TRANS_TAB

PARAM_TAB

public static final TransDialog.Tabs PARAM_TAB

LOG_TAB

public static final TransDialog.Tabs LOG_TAB

DATE_TAB

public static final TransDialog.Tabs DATE_TAB

DEP_TAB

public static final TransDialog.Tabs DEP_TAB

MISC_TAB

public static final TransDialog.Tabs MISC_TAB

MONITOR_TAB

public static final TransDialog.Tabs MONITOR_TAB
Method Detail

values

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

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

valueOf

public static TransDialog.Tabs 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