Package org.drools.model
Enum PrototypeExpression.BinaryOperation.Operator
- java.lang.Object
-
- java.lang.Enum<PrototypeExpression.BinaryOperation.Operator>
-
- org.drools.model.PrototypeExpression.BinaryOperation.Operator
-
- All Implemented Interfaces:
Serializable,Comparable<PrototypeExpression.BinaryOperation.Operator>
- Enclosing class:
- PrototypeExpression.BinaryOperation
public static enum PrototypeExpression.BinaryOperation.Operator extends Enum<PrototypeExpression.BinaryOperation.Operator>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PrototypeExpression.BinaryOperation.OperatordecodeKeyword(String keyword)static PrototypeExpression.BinaryOperation.OperatordecodeSymbol(String symbol)StringgetKeyword()StringgetSymbol()StringtoString()static PrototypeExpression.BinaryOperation.OperatorvalueOf(String name)Returns the enum constant of this type with the specified name.static PrototypeExpression.BinaryOperation.Operator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD
public static final PrototypeExpression.BinaryOperation.Operator ADD
-
SUB
public static final PrototypeExpression.BinaryOperation.Operator SUB
-
MUL
public static final PrototypeExpression.BinaryOperation.Operator MUL
-
DIV
public static final PrototypeExpression.BinaryOperation.Operator DIV
-
-
Method Detail
-
values
public static PrototypeExpression.BinaryOperation.Operator[] 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 (PrototypeExpression.BinaryOperation.Operator c : PrototypeExpression.BinaryOperation.Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrototypeExpression.BinaryOperation.Operator 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<PrototypeExpression.BinaryOperation.Operator>
-
getSymbol
public String getSymbol()
-
getKeyword
public String getKeyword()
-
decodeSymbol
public static PrototypeExpression.BinaryOperation.Operator decodeSymbol(String symbol)
-
decodeKeyword
public static PrototypeExpression.BinaryOperation.Operator decodeKeyword(String keyword)
-
-