Package io.vertigo.commons.peg.term
Enum Class PegArithmeticsOperatorTerm
- All Implemented Interfaces:
PegOperatorTerm<Object>,PegTerm,Serializable,Comparable<PegArithmeticsOperatorTerm>,Constable
public enum PegArithmeticsOperatorTerm
extends Enum<PegArithmeticsOperatorTerm>
implements PegOperatorTerm<Object>
All boolean operators.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionApply the operator to the two operands.intGet the priority of the operator.Get all the possible string values.static PegArithmeticsOperatorTermReturns the enum constant of this class with the specified name.static PegArithmeticsOperatorTerm[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PLUS
-
MINUS
-
MULTIPLY
-
DIVIDE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getStrValues
Description copied from interface:PegTermGet all the possible string values.- Specified by:
getStrValuesin interfacePegTerm- Returns:
- the list of string values
-
getPriority
public int getPriority()Description copied from interface:PegOperatorTermGet the priority of the operator. Higher is the priority, earlier the operator is executed.- Specified by:
getPriorityin interfacePegOperatorTerm<Object>- Returns:
- the priority of the operator
-
apply
Description copied from interface:PegOperatorTermApply the operator to the two operands.- Specified by:
applyin interfacePegOperatorTerm<Object>- Parameters:
left- the left operandright- the right operand- Returns:
- the result of the operation
- Throws:
PegParsingValueException- if the operator cannot be applied to the operands
-