Enum DecisionTableColumnPlugin.Type
- java.lang.Object
-
- java.lang.Enum<DecisionTableColumnPlugin.Type>
-
- org.drools.workbench.screens.guided.dtable.client.wizard.column.plugins.commons.DecisionTableColumnPlugin.Type
-
- All Implemented Interfaces:
Serializable,Comparable<DecisionTableColumnPlugin.Type>
- Enclosing interface:
- DecisionTableColumnPlugin
public static enum DecisionTableColumnPlugin.Type extends Enum<DecisionTableColumnPlugin.Type>
Plugin type for the column wizard. It determines the plugin section in the "Type Selection List" on the first page of the Wizard.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DecisionTableColumnPlugin.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static DecisionTableColumnPlugin.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASIC
public static final DecisionTableColumnPlugin.Type BASIC
-
ADVANCED
public static final DecisionTableColumnPlugin.Type ADVANCED
-
-
Method Detail
-
values
public static DecisionTableColumnPlugin.Type[] 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 (DecisionTableColumnPlugin.Type c : DecisionTableColumnPlugin.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DecisionTableColumnPlugin.Type 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
-
-