Uses of Class
org.eclipse.persistence.jpa.jpql.parser.CompoundExpression
-
Packages that use CompoundExpression Package Description org.eclipse.persistence.jpa.jpql This package contains the Hermes features (except the parser itself): semantic and grammatical validations, content assist support, calculating the query result type or the possible type of an input parameter, refactoring tools.org.eclipse.persistence.jpa.jpql.parser This is the core of Hermes, this package contains the classes that can parse a JPQL query.org.eclipse.persistence.jpa.jpql.tools org.eclipse.persistence.jpa.jpql.tools.model.query This package contains theStateObjectclasses that represents a JPQL query. -
-
Uses of CompoundExpression in org.eclipse.persistence.jpa.jpql
Methods in org.eclipse.persistence.jpa.jpql with parameters of type CompoundExpression Modifier and Type Method Description protected voidAbstractGrammarValidator. validateCompoundExpression(CompoundExpression expression, String identifier, String missingLeftExpression, String invalidLeftExpression, String missingRightExpression, String invalidRightExpression, String leftExpressionQueryBNF, String rightExpressionQueryBNF)protected intAbstractSemanticValidator. validateFunctionPathExpression(CompoundExpression expression, AbstractSemanticValidator.PathType pathType)Validates the left and right expressions of the given compound expression.protected voidParameterTypeVisitor. visitCompoundExpression(CompoundExpression expression) -
Uses of CompoundExpression in org.eclipse.persistence.jpa.jpql.parser
Subclasses of CompoundExpression in org.eclipse.persistence.jpa.jpql.parser Modifier and Type Class Description classAdditionExpressionOne of the four binary operators.classAndExpressionThe AND logical operator chains multiple criteria together.classArithmeticExpressionThis expression represents an arithmetic expression, which means the first and second expressions are aggregated with an arithmetic sign.classComparisonExpressionOnly the values of like types are permitted to be compared.classDivisionExpressionOne of the four binary operators.classLogicalExpressionThis expression represents a logical expression, which means the first and second expressions are aggregated with either AND or OR.classMultiplicationExpressionOne of the four binary operators.classOrExpressionThe OR logical operator chains multiple criteria together.classSubtractionExpressionOne of the four binary operators. -
Uses of CompoundExpression in org.eclipse.persistence.jpa.jpql.tools
Methods in org.eclipse.persistence.jpa.jpql.tools with parameters of type CompoundExpression Modifier and Type Method Description protected voidAbstractContentAssistVisitor.EndingQueryPositionBuilder. visitCompoundExpression(CompoundExpression expression) -
Uses of CompoundExpression in org.eclipse.persistence.jpa.jpql.tools.model.query
Methods in org.eclipse.persistence.jpa.jpql.tools.model.query that return CompoundExpression Modifier and Type Method Description CompoundExpressionCompoundExpressionStateObject. getExpression()
-