Class LessEqualsOperator
java.lang.Object
com.tangosol.coherence.dslquery.operator.BaseOperator<ComparisonFilter>
com.tangosol.coherence.dslquery.operator.ComparisonOperator
com.tangosol.coherence.dslquery.operator.LessEqualsOperator
A class representing the logical less than or equal to operator.
- Since:
- Coherence 12.2.1
- Author:
- jk 2013.12.03
-
Field Summary
Modifier and TypeFieldDescriptionstatic final LessEqualsOperator
An instance of the LessEqualsOperator.Fields inherited from class com.tangosol.coherence.dslquery.operator.BaseOperator
f_asAlias, f_fConditional, f_sSymbol
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addToTokenTable
(TokenTable tokenTable) Add this operator to the givenTokenTable
.flip()
Return the operator to use if this operation needs to be flipped due to the CohQL statement having the literal on the left hand side.makeFilter
(Object oLeft, Object oRight) Create aFilter
for thisBaseOperator
using the specified left and right values.Methods inherited from class com.tangosol.coherence.dslquery.operator.ComparisonOperator
makeFilter
Methods inherited from class com.tangosol.coherence.dslquery.operator.BaseOperator
addAliases, getAliases, getSymbol, isConditional, makeExtractor, makeExtractor, toString, unmodifiableSet
-
Field Details
-
INSTANCE
An instance of the LessEqualsOperator.
-
-
Constructor Details
-
LessEqualsOperator
protected LessEqualsOperator()Construct a LessEqualsOperator.
-
-
Method Details
-
flip
Description copied from class:ComparisonOperator
Return the operator to use if this operation needs to be flipped due to the CohQL statement having the literal on the left hand side. For example if the statement was "2 == foo" this would need to be flipped to put the literal on the right so giving the statement "foo == 2" and the flipped operator is still ==. But for another example such as "2 >= foo" flipping this give the statement "foo <= 2" so the operator has changed from >= to <=- Specified by:
flip
in classComparisonOperator
- Returns:
- the operator to use if this operation needs to be flipped due to the CohQL statement having the literal on the left hand side.
-
makeFilter
Description copied from class:BaseOperator
Create aFilter
for thisBaseOperator
using the specified left and right values.Note: This method should be thread safe as operators are stored in a static map so may be called by multiple threads.
- Overrides:
makeFilter
in classBaseOperator<ComparisonFilter>
- Parameters:
oLeft
- the left value to use to build a FilteroRight
- the right value to use to build a Filter- Returns:
- a Filter representing this operation
-
addToTokenTable
Description copied from class:BaseOperator
Add this operator to the givenTokenTable
. This typically means adding this operator using its symbol and also adding any aliases.- Specified by:
addToTokenTable
in classBaseOperator<ComparisonFilter>
- Parameters:
tokenTable
- the TokenTable to add this operator to
-