Class EclipseLinkJPQLGrammar2_2
java.lang.Object
org.eclipse.persistence.jpa.jpql.parser.AbstractJPQLGrammar
org.eclipse.persistence.jpa.jpql.parser.EclipseLinkJPQLGrammar2_2
- All Implemented Interfaces:
JPQLGrammar
This JPQLGrammar provides support for parsing JPQL queries defined in JSR-337 - Java Persistence 2.0. EclipseLink 2.2
does not add any additional support over EclipseLink 2.1.
Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.
- Since:
- 2.4
- Version:
- 2.5
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final EclipseLinkVersionThe EclipseLink version, which is 2.2. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected JPQLGrammarCreates the baseJPQLGrammarthis one extends, if one exists.static voidextend(AbstractJPQLGrammar jpqlGrammar) Extends the givenJPQLGrammarwith the information of this one without instantiating the baseJPQLGrammar.Returns theJPAVersionof the Java Persistence supported by this grammar.Returns the persistence provider name.Returns the version of the persistence provider.protected voidRegisters the JPQL query BNFs defining the JPQL grammar.protected voidRegisters theExpressionFactoriesrequired to properly parse JPQL queries.protected voidRegisters the JPQL identifiers support by thisJPQLGrammar.static JPQLGrammarinstance()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 2.2.
-
-
Constructor Details
-
EclipseLinkJPQLGrammar2_2
public EclipseLinkJPQLGrammar2_2()Creates a newEclipseLinkJPQLGrammar2_2.
-
-
Method Details
-
extend
Extends the givenJPQLGrammarwith the information of this one without instantiating the baseJPQLGrammar.- Parameters:
jpqlGrammar- TheJPQLGrammarto extend with the content of this one without instantiating the baseJPQLGrammar
-
instance
Returns the singleton instance of this class.- Returns:
- The
EclipseLinkJPQLGrammar2_2
-
buildBaseGrammar
Description copied from class:AbstractJPQLGrammarCreates the baseJPQLGrammarthis 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:
buildBaseGrammarin classAbstractJPQLGrammar- Returns:
- The base
JPQLGrammarornullif there is no base grammar
-
getJPAVersion
Description copied from interface:JPQLGrammarReturns theJPAVersionof the Java Persistence supported by this grammar.- Returns:
- The
JPA versionsupported by this grammar
-
getProvider
Description copied from interface:JPQLGrammarReturns the persistence provider name.- Returns:
- The name of the persistence provider,
nullshould never be returned
-
getProviderVersion
Description copied from interface:JPQLGrammarReturns 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:AbstractJPQLGrammarRegisters the JPQL query BNFs defining the JPQL grammar.- Specified by:
initializeBNFsin classAbstractJPQLGrammar
-
initializeExpressionFactories
protected void initializeExpressionFactories()Description copied from class:AbstractJPQLGrammarRegisters theExpressionFactoriesrequired to properly parse JPQL queries. AnExpressionFactoryis responsible to create anExpressionobject that represents a portion of the JPQL query.- Specified by:
initializeExpressionFactoriesin classAbstractJPQLGrammar
-
initializeIdentifiers
protected void initializeIdentifiers()Description copied from class:AbstractJPQLGrammarRegisters the JPQL identifiers support by thisJPQLGrammar. The registration involves registering theJPAVersionand theIdentifierRole.- Specified by:
initializeIdentifiersin classAbstractJPQLGrammar
-
toString
-