Class EclipseLinkJPQLGrammar4_0
java.lang.Object
org.eclipse.persistence.jpa.jpql.parser.AbstractJPQLGrammar
org.eclipse.persistence.jpa.jpql.parser.EclipseLinkJPQLGrammar4_0
- All Implemented Interfaces:
JPQLGrammar
This JPQLGrammar
provides support for parsing JPQL queries defined
in Jakarta Persistence 3.1 and the additional support provided by EclipseLink 4.0.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final EclipseLinkVersion
The EclipseLink version, which is 4.0. -
Constructor Summary
ConstructorDescriptionCreates a newEclipseLinkJPQLGrammar4_0
.EclipseLinkJPQLGrammar4_0
(AbstractJPQLGrammar jpqlGrammar) Creates a newEclipseLinkJPQLGrammar4_0
. -
Method Summary
Modifier and TypeMethodDescriptionprotected JPQLGrammar
Creates the baseJPQLGrammar
this one extends, if one exists.static void
extend
(AbstractJPQLGrammar jpqlGrammar) Extends the givenJPQLGrammar
with the information of this one without instantiating the baseJPQLGrammar
.Returns theJPAVersion
of the Java Persistence supported by this grammar.Returns the persistence provider name.Returns the version of the persistence provider.protected void
Registers the JPQL query BNFs defining the JPQL grammar.protected void
Registers theExpressionFactories
required to properly parse JPQL queries.protected void
Registers the JPQL identifiers support by thisJPQLGrammar
.static JPQLGrammar
instance()
Returns the singleton instance of this class.toString()
Methods inherited from class org.eclipse.persistence.jpa.jpql.parser.AbstractJPQLGrammar
addChildBNF, addChildFactory, addIdentifier, addIdentifiers, buildExpressionRegistry, getBaseGrammar, getExpressionRegistry, initialize, registerBNF, registerFactory, registerIdentifierRole, registerIdentifierVersion, setFallbackBNFId, setFallbackExpressionFactoryId, setHandleCollection, setHandleNestedArray, setHandleSubExpression
-
Field Details
-
VERSION
The EclipseLink version, which is 4.0.
-
-
Constructor Details
-
EclipseLinkJPQLGrammar4_0
public EclipseLinkJPQLGrammar4_0()Creates a newEclipseLinkJPQLGrammar4_0
. -
EclipseLinkJPQLGrammar4_0
Creates a newEclipseLinkJPQLGrammar4_0
.- Parameters:
jpqlGrammar
- TheJPQLGrammar
to extend with the content of this one without instantiating the baseJPQLGrammar
-
-
Method Details
-
extend
Extends the givenJPQLGrammar
with the information of this one without instantiating the baseJPQLGrammar
.- Parameters:
jpqlGrammar
- TheJPQLGrammar
to extend with the content of this one without instantiating the baseJPQLGrammar
-
instance
Returns the singleton instance of this class.- Returns:
- The singleton instance of
EclipseLinkJPQLGrammar4_0
-
buildBaseGrammar
Description copied from class:AbstractJPQLGrammar
Creates the baseJPQLGrammar
this one extends, if one exists.IMPORTANT: The singleton instance of any
JPQLGrammar
(for exampleJPQLGrammar1_0.instance()
cannot be used, the API does not support extending it, a new instance has to be created.- Specified by:
buildBaseGrammar
in classAbstractJPQLGrammar
- Returns:
- The base
JPQLGrammar
ornull
if there is no base grammar
-
getJPAVersion
Description copied from interface:JPQLGrammar
Returns theJPAVersion
of the Java Persistence supported by this grammar.- Returns:
- The
JPA version
supported by this grammar
-
getProvider
Description copied from interface:JPQLGrammar
Returns the persistence provider name.- Returns:
- The name of the persistence provider,
null
should never be returned
-
getProviderVersion
Description copied from interface:JPQLGrammar
Returns the version of the persistence provider.- Returns:
- The version of the persistence provider, if one is extending the default JPQL grammar defined in the Java Persistence specification, otherwise returns an empty string
-
initializeBNFs
protected void initializeBNFs()Description copied from class:AbstractJPQLGrammar
Registers the JPQL query BNFs defining the JPQL grammar.- Specified by:
initializeBNFs
in classAbstractJPQLGrammar
-
initializeExpressionFactories
protected void initializeExpressionFactories()Description copied from class:AbstractJPQLGrammar
Registers theExpressionFactories
required to properly parse JPQL queries. AnExpressionFactory
is responsible to create anExpression
object that represents a portion of the JPQL query.- Specified by:
initializeExpressionFactories
in classAbstractJPQLGrammar
-
initializeIdentifiers
protected void initializeIdentifiers()Description copied from class:AbstractJPQLGrammar
Registers the JPQL identifiers support by thisJPQLGrammar
. The registration involves registering theJPAVersion
and theIdentifierRole
.- Specified by:
initializeIdentifiers
in classAbstractJPQLGrammar
-
toString
-