Package org.openl.rules.dt
Enum DecisionTableColumnHeaders
- java.lang.Object
-
- java.lang.Enum<DecisionTableColumnHeaders>
-
- org.openl.rules.dt.DecisionTableColumnHeaders
-
- All Implemented Interfaces:
Serializable,Comparable<DecisionTableColumnHeaders>
public enum DecisionTableColumnHeaders extends Enum<DecisionTableColumnHeaders>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONCOLLECT_RETURNCONDITIONHORIZONTAL_CONDITIONKEYMERGED_CONDITIONRETURNRULE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetHeaderKey()static DecisionTableColumnHeadersvalueOf(String name)Returns the enum constant of this type with the specified name.static DecisionTableColumnHeaders[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONDITION
public static final DecisionTableColumnHeaders CONDITION
-
HORIZONTAL_CONDITION
public static final DecisionTableColumnHeaders HORIZONTAL_CONDITION
-
MERGED_CONDITION
public static final DecisionTableColumnHeaders MERGED_CONDITION
-
ACTION
public static final DecisionTableColumnHeaders ACTION
-
RULE
public static final DecisionTableColumnHeaders RULE
-
RETURN
public static final DecisionTableColumnHeaders RETURN
-
COLLECT_RETURN
public static final DecisionTableColumnHeaders COLLECT_RETURN
-
KEY
public static final DecisionTableColumnHeaders KEY
-
-
Method Detail
-
values
public static DecisionTableColumnHeaders[] 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 (DecisionTableColumnHeaders c : DecisionTableColumnHeaders.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DecisionTableColumnHeaders 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
-
getHeaderKey
public String getHeaderKey()
-
-