Uses of Interface
org.eclipse.persistence.jpa.jpql.JPQLQueryProblem
Packages that use JPQLQueryProblem
Package
Description
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.
-
Uses of JPQLQueryProblem in org.eclipse.persistence.jpa.jpql
Methods in org.eclipse.persistence.jpa.jpql that return JPQLQueryProblemModifier and TypeMethodDescriptionprotected JPQLQueryProblem
AbstractValidator.buildProblem
(Expression expression, int startPosition, int endPosition, String messageKey, String... messageArguments) Creates a new validation problem that was found in the givenExpression
.Method parameters in org.eclipse.persistence.jpa.jpql with type arguments of type JPQLQueryProblemModifier and TypeMethodDescriptionvoid
AbstractValidator.setProblems
(Collection<JPQLQueryProblem> problems) Sets the collection that will be used to storeproblems
this validator will find in the JPQL query. -
Uses of JPQLQueryProblem in org.eclipse.persistence.jpa.jpql.tools
Methods in org.eclipse.persistence.jpa.jpql.tools that return types with arguments of type JPQLQueryProblemModifier and TypeMethodDescriptionAbstractJPQLQueryHelper.validate()
Validates the query by introspecting it grammatically and semantically.AbstractJPQLQueryHelper.validateGrammar()
Validates the query by only introspecting it grammatically.AbstractJPQLQueryHelper.validateSemantic()
Validates the query by only introspecting it semantically.Method parameters in org.eclipse.persistence.jpa.jpql.tools with type arguments of type JPQLQueryProblemModifier and TypeMethodDescriptionvoid
AbstractJPQLQueryHelper.validate
(Expression expression, List<JPQLQueryProblem> problems) Validates the query by introspecting it grammatically and semantically.void
AbstractJPQLQueryHelper.validateGrammar
(Expression expression, List<JPQLQueryProblem> problems) Validates the query by only introspecting it grammatically.void
AbstractJPQLQueryHelper.validateSemantic
(Expression expression, List<JPQLQueryProblem> problems) Validates the query by only introspecting it semantically.