Uses of Interface
org.eclipse.persistence.jpa.jpql.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
Modifier 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
.Modifier 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
Modifier 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.Modifier 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.