Enum GuidedDecisionTableTheme.ModelColumnType
- java.lang.Object
-
- java.lang.Enum<GuidedDecisionTableTheme.ModelColumnType>
-
- org.drools.workbench.screens.guided.dtable.client.widget.table.themes.GuidedDecisionTableTheme.ModelColumnType
-
- All Implemented Interfaces:
Serializable,Comparable<GuidedDecisionTableTheme.ModelColumnType>
- Enclosing class:
- GuidedDecisionTableTheme
public static enum GuidedDecisionTableTheme.ModelColumnType extends Enum<GuidedDecisionTableTheme.ModelColumnType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONATTRIBUTECAPTIONCONDITIONDESCRIPTIONMETADATAROW_NUMBERUNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GuidedDecisionTableTheme.ModelColumnTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GuidedDecisionTableTheme.ModelColumnType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROW_NUMBER
public static final GuidedDecisionTableTheme.ModelColumnType ROW_NUMBER
-
DESCRIPTION
public static final GuidedDecisionTableTheme.ModelColumnType DESCRIPTION
-
METADATA
public static final GuidedDecisionTableTheme.ModelColumnType METADATA
-
ATTRIBUTE
public static final GuidedDecisionTableTheme.ModelColumnType ATTRIBUTE
-
CONDITION
public static final GuidedDecisionTableTheme.ModelColumnType CONDITION
-
ACTION
public static final GuidedDecisionTableTheme.ModelColumnType ACTION
-
CAPTION
public static final GuidedDecisionTableTheme.ModelColumnType CAPTION
-
UNKNOWN
public static final GuidedDecisionTableTheme.ModelColumnType UNKNOWN
-
-
Method Detail
-
values
public static GuidedDecisionTableTheme.ModelColumnType[] 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 (GuidedDecisionTableTheme.ModelColumnType c : GuidedDecisionTableTheme.ModelColumnType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GuidedDecisionTableTheme.ModelColumnType 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
-
-