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