Package com.norconex.commons.lang
Enum Class Operator
- All Implemented Interfaces:
Serializable,Comparable<Operator>,Constable
Operators used by a few conditions based on comparable values (e.g., numbers, dates, etc.). Facilitates specifying/parsing such operators as strings
Textual representation:
Operators can be parsed using symbols or text abbreviations. Text abbreviations are useful when you do now want to concern yourself when used in XML. Possible representations are:
| Symbol | Abbreviation | Meaning |
|---|---|---|
| > | gt | greater than |
| >=, => | ge | greater equal |
| < | lt | lower than |
| <=, =< | le | lowe equal |
| =, == | eq,is | equals |
- Since:
- 2.0.0
-
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 TypeMethodDescriptionabstract <T extends Comparable<T>>
booleanevaluate(T first, T second) static OperatortoString()static OperatorReturns the enum constant of this class with the specified name.static Operator[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GREATER_THAN
-
GREATER_EQUAL
-
EQUALS
-
LOWER_EQUAL
-
LOWER_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
-
of
-
toString
-
evaluate
-