Enum DecisionTableUIModelMapperHelper.DecisionTableSection
- java.lang.Object
-
- java.lang.Enum<DecisionTableUIModelMapperHelper.DecisionTableSection>
-
- org.kie.workbench.common.dmn.client.editors.expressions.types.dtable.DecisionTableUIModelMapperHelper.DecisionTableSection
-
- All Implemented Interfaces:
Serializable,Comparable<DecisionTableUIModelMapperHelper.DecisionTableSection>
- Enclosing class:
- DecisionTableUIModelMapperHelper
public static enum DecisionTableUIModelMapperHelper.DecisionTableSection extends Enum<DecisionTableUIModelMapperHelper.DecisionTableSection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATION_CLAUSESINPUT_CLAUSESNONEOUTPUT_CLAUSESROW_INDEX
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DecisionTableUIModelMapperHelper.DecisionTableSectionvalueOf(String name)Returns the enum constant of this type with the specified name.static DecisionTableUIModelMapperHelper.DecisionTableSection[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DecisionTableUIModelMapperHelper.DecisionTableSection NONE
-
ROW_INDEX
public static final DecisionTableUIModelMapperHelper.DecisionTableSection ROW_INDEX
-
INPUT_CLAUSES
public static final DecisionTableUIModelMapperHelper.DecisionTableSection INPUT_CLAUSES
-
OUTPUT_CLAUSES
public static final DecisionTableUIModelMapperHelper.DecisionTableSection OUTPUT_CLAUSES
-
ANNOTATION_CLAUSES
public static final DecisionTableUIModelMapperHelper.DecisionTableSection ANNOTATION_CLAUSES
-
-
Method Detail
-
values
public static DecisionTableUIModelMapperHelper.DecisionTableSection[] 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 (DecisionTableUIModelMapperHelper.DecisionTableSection c : DecisionTableUIModelMapperHelper.DecisionTableSection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DecisionTableUIModelMapperHelper.DecisionTableSection 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
-
-