Enum PipelineDialog.Tabs
- java.lang.Object
-
- java.lang.Enum<PipelineDialog.Tabs>
-
- org.apache.hop.ui.pipeline.dialog.PipelineDialog.Tabs
-
- All Implemented Interfaces:
Serializable,Comparable<PipelineDialog.Tabs>
- Enclosing class:
- PipelineDialog
public static enum PipelineDialog.Tabs extends Enum<PipelineDialog.Tabs>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXTRA_TABMONITOR_TABPARAM_TABPIPELINE_TAB
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PipelineDialog.TabsvalueOf(String name)Returns the enum constant of this type with the specified name.static PipelineDialog.Tabs[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PIPELINE_TAB
public static final PipelineDialog.Tabs PIPELINE_TAB
-
PARAM_TAB
public static final PipelineDialog.Tabs PARAM_TAB
-
MONITOR_TAB
public static final PipelineDialog.Tabs MONITOR_TAB
-
EXTRA_TAB
public static final PipelineDialog.Tabs EXTRA_TAB
-
-
Method Detail
-
values
public static PipelineDialog.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 (PipelineDialog.Tabs c : PipelineDialog.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 PipelineDialog.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
-
-