Uses of Class
com.tangosol.coherence.dslquery.operator.BaseOperator
-
Packages that use BaseOperator Package Description com.tangosol.coherence.dslquery Contains packages and classes supporting the Coherence CohQL command line tool.com.tangosol.coherence.dslquery.operator This package contains implementations of theBaseOperator
interface. -
-
Uses of BaseOperator in com.tangosol.coherence.dslquery
Fields in com.tangosol.coherence.dslquery with type parameters of type BaseOperator Modifier and Type Field Description protected Map<CharSequence,BaseOperator>
CoherenceQueryLanguage. m_mapOperators
The map of CohQL operators.Methods in com.tangosol.coherence.dslquery that return BaseOperator Modifier and Type Method Description BaseOperator
CoherenceQueryLanguage. getOperator(String sSymbol)
Return theBaseOperator
mapped to the given symbol.Methods in com.tangosol.coherence.dslquery that return types with arguments of type BaseOperator Modifier and Type Method Description protected Map<CharSequence,BaseOperator>
CoherenceQueryLanguage. initializeOperatorMap()
Initialize the CohQL operators Map with all of the built-in CohQL operators and return the Map.Methods in com.tangosol.coherence.dslquery with parameters of type BaseOperator Modifier and Type Method Description void
CoherenceQueryLanguage. addOperator(BaseOperator operator)
Add the custom operator to the CohQL language. -
Uses of BaseOperator in com.tangosol.coherence.dslquery.operator
Subclasses of BaseOperator in com.tangosol.coherence.dslquery.operator Modifier and Type Class Description class
AdditionOperator
ABaseOperator
implementation representing the addition (+) operator.class
AndOperator
An operator representing a logical AND (&&).class
BetweenOperator
An operator representing the "between" conditional operator.class
ComparisonOperator
A base class for comparison operators, which are operators that are used in conditional clauses such as equals, greater than, less than, etc.class
ContainsAllOperator
An operator representing the conditional "contains all" operation.class
ContainsAnyOperator
An operator representing the conditional "contains any" operation.class
ContainsOperator
An operator representing the conditional "contains" operation.class
DivisionOperator
An operator representing the conditional mathematical division operation.class
EqualsOperator
An operator implementation representing the equality operator.class
GreaterEqualsOperator
A class representing the conditional greater than or equal to operator.class
GreaterOperator
A class representing the greater than operator.class
ILikeOperator
A class representing the case-insensitive "ilike" operator.class
InOperator
A class representing the "in"operator.class
LessEqualsOperator
A class representing the logical less than or equal to operator.class
LessOperator
A class representing the logical less than or equal to operator.class
LikeOperator
A class representing the "like" operator.class
MultiplicationOperator
An operator representing the mathematical multiplication operation.class
NotEqualsOperator
A class representing the not equals operator.class
OrOperator
A class representing the logical OR operator.class
SubtractionOperator
An operator representing the conditional mathematical subtraction operation.class
XorOperator
A class representing the logical XOR operator.Methods in com.tangosol.coherence.dslquery.operator that return BaseOperator Modifier and Type Method Description abstract BaseOperator<ComparisonFilter>
ComparisonOperator. 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.
-