Package org.kie.dmn.feel.lang.ast
Enum UnaryTestNode.UnaryOperator
- java.lang.Object
-
- java.lang.Enum<UnaryTestNode.UnaryOperator>
-
- org.kie.dmn.feel.lang.ast.UnaryTestNode.UnaryOperator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UnaryTestNode.UnaryOperator>
- Enclosing class:
- UnaryTestNode
public static enum UnaryTestNode.UnaryOperator extends java.lang.Enum<UnaryTestNode.UnaryOperator>
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Stringsymbol
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UnaryTestNode.UnaryOperatordetermineOperator(java.lang.String symbol)static UnaryTestNode.UnaryOperatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UnaryTestNode.UnaryOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LTE
public static final UnaryTestNode.UnaryOperator LTE
-
LT
public static final UnaryTestNode.UnaryOperator LT
-
GT
public static final UnaryTestNode.UnaryOperator GT
-
GTE
public static final UnaryTestNode.UnaryOperator GTE
-
NE
public static final UnaryTestNode.UnaryOperator NE
-
EQ
public static final UnaryTestNode.UnaryOperator EQ
-
NOT
public static final UnaryTestNode.UnaryOperator NOT
-
IN
public static final UnaryTestNode.UnaryOperator IN
-
TEST
public static final UnaryTestNode.UnaryOperator TEST
-
-
Method Detail
-
values
public static UnaryTestNode.UnaryOperator[] 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 (UnaryTestNode.UnaryOperator c : UnaryTestNode.UnaryOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnaryTestNode.UnaryOperator valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
determineOperator
public static UnaryTestNode.UnaryOperator determineOperator(java.lang.String symbol)
-
-