Package org.pentaho.di.ui.trans.dialog
Enum TransDialog.Tabs
- java.lang.Object
-
- java.lang.Enum<TransDialog.Tabs>
-
- 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>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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
-
EXTRA_TAB
public static final TransDialog.Tabs EXTRA_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 nameNullPointerException
- if the argument is null
-
-