Class DefaultJPQLGrammar
- java.lang.Object
-
- org.eclipse.persistence.jpa.jpql.parser.DefaultJPQLGrammar
-
- All Implemented Interfaces:
JPQLGrammar
public final class DefaultJPQLGrammar extends java.lang.Object implements JPQLGrammar
ThisJPQL grammar
provides support for parsing JPQL queries defined in the latest JPA functional specification. The current version of the functional specification is JSR-338 - Java Persistence 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.
- Version:
- 2.5
- See Also:
JPQLGrammar2_1
,DefaultJPQLGrammar
,DefaultEclipseLinkJPQLGrammar
- Author:
- Pascal Filion
- Since:
- 2.4
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PROVIDER_NAME
The generic persistence provider name: JPA.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ExpressionRegistry
getExpressionRegistry()
Returns the registry containing theJPQLQueryBNFs
and theExpressionFactories
that are used to properly parse a JPQL query.JPAVersion
getJPAVersion()
Returns theJPAVersion
of the Java Persistence supported by this grammar.java.lang.String
getProvider()
Returns the persistence provider name.java.lang.String
getProviderVersion()
Returns the version of the persistence provider.static JPQLGrammar
instance()
Returns the singleton instance of this class.java.lang.String
toString()
-
-
-
Field Detail
-
PROVIDER_NAME
public static final java.lang.String PROVIDER_NAME
The generic persistence provider name: JPA.- See Also:
- Constant Field Values
-
-
Method Detail
-
instance
public static JPQLGrammar instance()
Returns the singleton instance of this class.- Returns:
- The singleton instance of this
DefaultJPQLGrammar
-
getExpressionRegistry
public ExpressionRegistry getExpressionRegistry()
Returns the registry containing theJPQLQueryBNFs
and theExpressionFactories
that are used to properly parse a JPQL query.- Specified by:
getExpressionRegistry
in interfaceJPQLGrammar
- Returns:
- The registry containing the information related to the JPQL grammar
-
getJPAVersion
public JPAVersion getJPAVersion()
Returns theJPAVersion
of the Java Persistence supported by this grammar.- Specified by:
getJPAVersion
in interfaceJPQLGrammar
- Returns:
- The
JPA version
supported by this grammar
-
getProvider
public java.lang.String getProvider()
Returns the persistence provider name.- Specified by:
getProvider
in interfaceJPQLGrammar
- Returns:
- The name of the persistence provider,
null
should never be returned
-
getProviderVersion
public java.lang.String getProviderVersion()
Returns the version of the persistence provider.- Specified by:
getProviderVersion
in interfaceJPQLGrammar
- 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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-