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