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.jpqlMethods in org.eclipse.persistence.jpa.jpql that return JPQLQueryProblemModifier and TypeMethodDescriptionprotected JPQLQueryProblemAbstractValidator.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 TypeMethodDescriptionvoidAbstractValidator.setProblems(Collection<JPQLQueryProblem> problems) Sets the collection that will be used to storeproblemsthis validator will find in the JPQL query.
- 
Uses of JPQLQueryProblem in org.eclipse.persistence.jpa.jpql.toolsMethods 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 TypeMethodDescriptionvoidAbstractJPQLQueryHelper.validate(Expression expression, List<JPQLQueryProblem> problems) Validates the query by introspecting it grammatically and semantically.voidAbstractJPQLQueryHelper.validateGrammar(Expression expression, List<JPQLQueryProblem> problems) Validates the query by only introspecting it grammatically.voidAbstractJPQLQueryHelper.validateSemantic(Expression expression, List<JPQLQueryProblem> problems) Validates the query by only introspecting it semantically.