Package io.vertigo.commons.peg.term
Enum Class PegCompareTerm
- All Implemented Interfaces:
PegTerm,Serializable,Comparable<PegCompareTerm>,Constable
All comparison 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 TypeMethodDescriptionstatic BooleandoCompare(Object left, Object right, PegCompareTerm operator) Get all the possible string values.static PegCompareTermReturns the enum constant of this class with the specified name.static PegCompareTerm[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LTE
Lesser Than or Equals. -
GTE
Greater Than or Equals. -
NEQ
Not Equals. -
EQ
Equals. -
LT
Lesser Than. -
GT
Greater Than.
-
-
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
-
doCompare
public static Boolean doCompare(Object left, Object right, PegCompareTerm operator) throws PegParsingValueException - Throws:
PegParsingValueException
-