Package org.openl.rules.lang.xls
Enum XlsNodeTypes
- java.lang.Object
-
- java.lang.Enum<XlsNodeTypes>
-
- org.openl.rules.lang.xls.XlsNodeTypes
-
- All Implemented Interfaces:
Serializable,Comparable<XlsNodeTypes>
public enum XlsNodeTypes extends Enum<XlsNodeTypes>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static XlsNodeTypesgetEnumByValue(String value)StringtoString()static XlsNodeTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static XlsNodeTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WORKBOOK
public static final XlsNodeTypes WORKBOOK
-
WORKSHEET
public static final XlsNodeTypes WORKSHEET
-
TABLE
public static final XlsNodeTypes TABLE
-
CELL
public static final XlsNodeTypes CELL
-
XLS_MODULE
public static final XlsNodeTypes XLS_MODULE
-
XLS_WORKBOOK
public static final XlsNodeTypes XLS_WORKBOOK
-
XLS_WORKSHEET
public static final XlsNodeTypes XLS_WORKSHEET
-
XLS_DT
public static final XlsNodeTypes XLS_DT
-
XLS_SPREADSHEET
public static final XlsNodeTypes XLS_SPREADSHEET
-
XLS_TBASIC
public static final XlsNodeTypes XLS_TBASIC
-
XLS_COLUMN_MATCH
public static final XlsNodeTypes XLS_COLUMN_MATCH
-
XLS_METHOD
public static final XlsNodeTypes XLS_METHOD
-
XLS_TEST_METHOD
public static final XlsNodeTypes XLS_TEST_METHOD
-
XLS_RUN_METHOD
public static final XlsNodeTypes XLS_RUN_METHOD
-
XLS_DATA
public static final XlsNodeTypes XLS_DATA
-
XLS_DATATYPE
public static final XlsNodeTypes XLS_DATATYPE
-
XLS_OPENL
public static final XlsNodeTypes XLS_OPENL
-
XLS_ENVIRONMENT
public static final XlsNodeTypes XLS_ENVIRONMENT
-
XLS_TABLEPART
public static final XlsNodeTypes XLS_TABLEPART
-
XLS_OTHER
public static final XlsNodeTypes XLS_OTHER
-
XLS_PROPERTIES
public static final XlsNodeTypes XLS_PROPERTIES
-
XLS_CONDITIONS
public static final XlsNodeTypes XLS_CONDITIONS
-
XLS_ACTIONS
public static final XlsNodeTypes XLS_ACTIONS
-
XLS_RETURNS
public static final XlsNodeTypes XLS_RETURNS
-
XLS_CONSTANTS
public static final XlsNodeTypes XLS_CONSTANTS
-
-
Method Detail
-
values
public static XlsNodeTypes[] 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 (XlsNodeTypes c : XlsNodeTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XlsNodeTypes 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<XlsNodeTypes>
-
getEnumByValue
public static XlsNodeTypes getEnumByValue(String value)
-
-