Package org.openl.rules.tbasic.compile
Enum OperationType
- java.lang.Object
-
- java.lang.Enum<OperationType>
-
- org.openl.rules.tbasic.compile.OperationType
-
- All Implemented Interfaces:
Serializable,Comparable<OperationType>
public enum OperationType extends Enum<OperationType>
Created by dl on 9/16/14.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECK_LABELCOMPILEDECLAREDECLARE_ARRAY_ELEMENTFUNCTIONSUBROUTINE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static OperationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHECK_LABEL
public static final OperationType CHECK_LABEL
-
COMPILE
public static final OperationType COMPILE
-
DECLARE
public static final OperationType DECLARE
-
DECLARE_ARRAY_ELEMENT
public static final OperationType DECLARE_ARRAY_ELEMENT
-
SUBROUTINE
public static final OperationType SUBROUTINE
-
FUNCTION
public static final OperationType FUNCTION
-
-
Method Detail
-
values
public static OperationType[] 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 (OperationType c : OperationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationType 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<OperationType>
-
-