Class JPQLQueryBNF
- Direct Known Subclasses:
AbstractSchemaNameBNF
,AggregateExpressionBNF
,AllOrAnyExpressionBNF
,ArithmeticExpressionBNF
,ArithmeticFactorBNF
,ArithmeticPrimaryBNF
,ArithmeticTermBNF
,AsOfClauseBNF
,BadExpressionBNF
,BetweenExpressionBNF
,BooleanExpressionBNF
,BooleanLiteralBNF
,BooleanPrimaryBNF
,CaseExpressionBNF
,CaseOperandBNF
,CastExpressionBNF
,CoalesceExpressionBNF
,CollectionMemberDeclarationBNF
,CollectionMemberExpressionBNF
,CollectionValuedPathExpressionBNF
,ComparisonExpressionBNF
,ConditionalExpressionBNF
,ConditionalFactorBNF
,ConditionalPrimaryBNF
,ConditionalTermBNF
,ConnectByClauseBNF
,ConstructorExpressionBNF
,ConstructorItemBNF
,DatabaseTypeQueryBNF
,DatetimeExpressionBNF
,DateTimePrimaryBNF
,DateTimeTimestampLiteralBNF
,DeleteClauseBNF
,DeleteClauseRangeVariableDeclarationBNF
,DeleteStatementBNF
,DerivedCollectionMemberDeclarationBNF
,ElseExpressionBNF
,EmptyCollectionComparisonExpressionBNF
,EntityExpressionBNF
,EntityOrValueExpressionBNF
,EntityTypeExpressionBNF
,EntityTypeLiteralBNF
,EnumExpressionBNF
,EnumLiteralBNF
,EnumPrimaryBNF
,ExistsExpressionBNF
,ExtractExpressionBNF
,FromClauseBNF
,FunctionExpressionBNF
,FunctionItemBNF
,FunctionsReturningDatetimeBNF
,FunctionsReturningNumericsBNF
,FunctionsReturningStringsBNF
,GeneralCaseExpressionBNF
,GeneralIdentificationVariableBNF
,GenericQueryBNF
,GroupByClauseBNF
,GroupByItemBNF
,HavingClauseBNF
,HierarchicalQueryClauseBNF
,IdentificationVariableBNF
,IdentificationVariableDeclarationBNF
,InExpressionBNF
,InExpressionExpressionBNF
,InExpressionItemBNF
,InputParameterBNF
,InternalAggregateFunctionBNF
,InternalBetweenExpressionBNF
,InternalCoalesceExpressionBNF
,InternalColumnExpressionBNF
,InternalConcatExpressionBNF
,InternalConnectByClauseBNF
,InternalCountBNF
,InternalEntityTypeExpressionBNF
,InternalFromClauseBNF
,InternalJoinBNF
,InternalLengthExpressionBNF
,InternalLocateStringExpressionBNF
,InternalLocateThirdExpressionBNF
,InternalLowerExpressionBNF
,InternalModExpressionBNF
,InternalOrderByClauseBNF
,InternalOrderByItemBNF
,InternalPowerExpressionBNF
,InternalRoundExpressionBNF
,InternalSelectExpressionBNF
,InternalSimpleFromClauseBNF
,InternalSimpleSelectExpressionBNF
,InternalSqrtExpressionBNF
,InternalSubstringPositionExpressionBNF
,InternalSubstringStringExpressionBNF
,InternalUpdateClauseBNF
,InternalUpperExpressionBNF
,InternalWhenClauseBNF
,JoinAssociationPathExpressionBNF
,JoinBNF
,JoinFetchBNF
,JPQLStatementBNF
,LikeExpressionBNF
,LikeExpressionEscapeCharacterBNF
,LiteralBNF
,LocalDateTypeBNF
,LocalExpressionBNF
,NewValueBNF
,NullComparisonExpressionBNF
,NullIfExpressionBNF
,NumericLiteralBNF
,ObjectExpressionBNF
,OnClauseBNF
,OrderByClauseBNF
,OrderByItemBNF
,OrderSiblingsByClauseBNF
,PatternValueBNF
,QualifiedIdentificationVariableBNF
,RangeDeclarationBNF
,RangeVariableDeclarationBNF
,RegexpExpressionBNF
,ResultVariableBNF
,ScalarExpressionBNF
,SelectClauseBNF
,SelectExpressionBNF
,SelectStatementBNF
,SimpleArithmeticExpressionBNF
,SimpleCaseExpressionBNF
,SimpleConditionalExpressionBNF
,SimpleEntityExpressionBNF
,SimpleEntityOrValueExpressionBNF
,SimpleResultVariableBNF
,SimpleSelectClauseBNF
,SimpleSelectExpressionBNF
,SingleValuedObjectPathExpressionBNF
,SingleValuedPathExpressionBNF
,StartWithClauseBNF
,StateFieldPathExpressionBNF
,StringExpressionBNF
,StringLiteralBNF
,StringPrimaryBNF
,SubqueryBNF
,SubqueryFromClauseBNF
,SubSelectIdentificationVariableDeclarationBNF
,TableExpressionBNF
,TableVariableDeclarationBNF
,TreatExpressionBNF
,TypeExpressionBNF
,UnionClauseBNF
,UpdateClauseBNF
,UpdateItemBNF
,UpdateItemStateFieldPathExpressionBNF
,UpdateStatementBNF
,VirtualJPQLQueryBNF
,WhenClauseBNF
,WhereClauseBNF
This defines a single Backus-Naur Form (BNF) of the JPQL grammar. The Java Persistence functional specifications are:
JPQLGrammar1_0
: JSR 220: Enterprise JavaBeans™ version 3.0JPQLGrammar2_0
: JSR 317: Java™ Persistence 2.0JPQLGrammar2_1
: 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.
- Since:
- 2.3
- Version:
- 2.5.1
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionchildren()
Returns the set of all the query BNFs that are part of this BNF.getExpressionFactory
(String identifier) Retrieves theExpressionFactory
that is associated with the given identifier, if the given string is indeed a JPQL identifier.Returns the unique identifiers of theExpressionFactory
handled by this BNF rule, which includes those from the children as well.Returns the registry containing theJPQLQueryBNFs
and theExpressionFactories
that are used to properly parse a JPQL query.When parsing the query and noJPQLQueryBNFs
can help to parse the query, then it will fall back on this one.Returns the unique identifier of theExpressionFactory
to use when the fall back BNF ID is notnull
.getId()
Returns the unique identifier of thisJPQLQueryBNF
.Retrieves the JPQL identifiers that are supported by this BNF rule.boolean
Determines whether theExpression
handles a collection of sub-expressions that are aggregated by logical or arithmetic operators.boolean
Determines whether theExpression
handles a collection of sub-expressions that are separated by commas.boolean
boolean
Determines whether this BNF handles parsing a sub-expression, i.e.boolean
Determines whether the BNF with the given ID is part of this BNF or not.boolean
hasIdentifier
(String word) Determines if this query BNF support the given word, which can be an identifier.protected void
Initializes this BNF by registering childJPQLQueryBNFs
andExpressionFactories
.boolean
Determines whether this BNF has child BNFs registered only to properly parse a query or if the child BNFs are part of the BNF.Returns the set of all the query BNFs that are part of this BNF.protected final void
registerChild
(String queryBNFId) Registers the unique identifier of the BNF rule as a child of this BNF rule.protected final void
registerExpressionFactory
(String expressionFactoryId) Registers a unique identifier of theExpressionFactory
to register with this BNF rule.void
setCompound
(boolean compound) Determines whether this BNF has child BNFs registered only to properly parse a query or if the child BNFs are part of the BNF.void
setFallbackBNFId
(String fallbackBNFId) When parsing the query and noJPQLQueryBNFs
can help to parse the query, then it will fall back on the given one.void
setFallbackExpressionFactoryId
(String fallbackExpressionFactoryId) Sets the unique identifier of theExpressionFactory
to use when the fall back BNF ID is notnull
.void
setHandleAggregate
(boolean handleAggregate) Sets whether theExpression
handles a collection of sub-expressions that are aggregated by logical or arithmetic operators.void
setHandleCollection
(boolean handleCollection) Sets whether theExpression
handles a collection of sub-expressions that are separated by commas.void
setHandleNestedArray
(boolean handleNestedArray) Sets whether this BNF supports nested array or not.void
setHandleSubExpression
(boolean handleSubExpression) Sets whether this BNF handles parsing a sub-expression, i.e.toString()
protected void
Adds to the given builder more information about thisJPQLQueryBNF
.
-
Constructor Details
-
JPQLQueryBNF
Creates a newJPQLQueryBNF
.- Parameters:
id
- The unique identifier of this BNF rule- Throws:
NullPointerException
- The given unique identifier cannot benull
-
-
Method Details
-
children
Returns the set of all the query BNFs that are part of this BNF. The set always include this BNF as well.- Returns:
- The children BNFs describing this BNF rule
-
getExpressionFactory
Retrieves theExpressionFactory
that is associated with the given identifier, if the given string is indeed a JPQL identifier.- Parameters:
identifier
- The JPQL identifier (in theory) that is used to retrieve the factory responsible to parse a portion of the query starting with that identifier- Returns:
- The
ExpressionFactory
responsible to parse a portion of the query starting with the given identifier;null
if nothing was registered for it
-
getExpressionFactoryIds
Returns the unique identifiers of theExpressionFactory
handled by this BNF rule, which includes those from the children as well.- Returns:
- The list of unique identifiers of the
ExpressionFactory
registered with this BNF rule and with its children
-
getExpressionRegistry
Returns the registry containing theJPQLQueryBNFs
and theExpressionFactories
that are used to properly parse a JPQL query.- Returns:
- The registry containing the information related to the JPQL grammar
-
getFallbackBNFId
When parsing the query and noJPQLQueryBNFs
can help to parse the query, then it will fall back on this one.- Returns:
- The unique identifier of the
JPQLQueryBNF
to use in the last resort
-
getFallbackExpressionFactoryId
Returns the unique identifier of theExpressionFactory
to use when the fall back BNF ID is notnull
. This will be used to parse a portion of the query when the registeredexpression factories
cannot parse it.Note: This method is only called if
getFallbackBNFId()
does not returnnull
.- Returns:
- The unique identifier of the
ExpressionFactory
-
getId
Returns the unique identifier of thisJPQLQueryBNF
.- Returns:
- The identifier used to register this
JPQLQueryBNF
withAbstractExpression
-
getIdentifiers
Retrieves the JPQL identifiers that are supported by this BNF rule. The JPQL identifiers are retrieved by scanning theExpressionFactory
registered with this BNF rule and the child BNF rules.- Returns:
- The list of JPQL identifiers that are supported by this BNF
-
handleAggregate
public boolean handleAggregate()Determines whether theExpression
handles a collection of sub-expressions that are aggregated by logical or arithmetic operators.- Returns:
true
if the sub-expression to parse might have several logical and/or arithmetic expressions;false
otherwise
-
handleCollection
public boolean handleCollection()Determines whether theExpression
handles a collection of sub-expressions that are separated by commas.- Returns:
true
if the sub-expression to parse might have several sub-expressions separated by commas;false
otherwise
-
handlesNestedArray
public boolean handlesNestedArray()- Since:
- 2.5
-
handleSubExpression
public boolean handleSubExpression()Determines whether this BNF handles parsing a sub-expression, i.e. parsing an expression encapsulated by parenthesis. SeesetHandleSubExpression(boolean)
for more details.- Returns:
true
if this BNF handles parsing a sub-expression;false
otherwise
-
hasChild
Determines whether the BNF with the given ID is part of this BNF or not.- Parameters:
queryBNFId
- The unique identifier of the BNF rule to check if it's a child of this one- Returns:
true
if the BNF with the given ID is- Since:
- 2.5.1
-
hasIdentifier
Determines if this query BNF support the given word, which can be an identifier.- Parameters:
word
- A word that could be a JPQL identifier or anything else- Returns:
true
if the given word is a JPQL identifier and it is supported by this BNF;false
otherwise
-
initialize
protected void initialize()Initializes this BNF by registering childJPQLQueryBNFs
andExpressionFactories
. -
isCompound
public boolean isCompound()Determines whether this BNF has child BNFs registered only to properly parse a query or if the child BNFs are part of the BNF. An example if a compound BNF isBetweenExpressionBNF
, it registers a series of children BNFs but they shouldn't be used to determine if they are part of that BNF since the comparator identifiers are.- Returns:
false
by default
-
nonCompoundChildren
Returns the set of all the query BNFs that are part of this BNF. The set always include this BNF as well.- Returns:
- The children BNFs describing this BNF rule. The set excludes BNF rules that are used to complete a BNF, such as the BNF rules defined for BETWEEN since they are required to properly parse the query
-
registerChild
Registers the unique identifier of the BNF rule as a child of this BNF rule.- Parameters:
queryBNFId
- The unique identifier of the BNF rule to add as a child- Throws:
NullPointerException
- ThequeryBNFId
cannot benull
-
registerExpressionFactory
Registers a unique identifier of theExpressionFactory
to register with this BNF rule.- Parameters:
expressionFactoryId
- The unique identifier of theExpressionFactory
- Throws:
NullPointerException
- TheexpressionFactoryId
cannot benull
-
setCompound
public void setCompound(boolean compound) Determines whether this BNF has child BNFs registered only to properly parse a query or if the child BNFs are part of the BNF. An example if a compound BNF isBetweenExpressionBNF
, it registers a series of children BNFs but they shouldn't be used to determine if they are part of that BNF since the comparator identifiers are.- Parameters:
compound
-true
if this BNF represents a compound BNF and its children are not part of this BNF but only to support compound expression;false
otherwise
-
setFallbackBNFId
When parsing the query and noJPQLQueryBNFs
can help to parse the query, then it will fall back on the given one.- Parameters:
fallbackBNFId
- The unique identifier of theJPQLQueryBNF
to use in the last resort
-
setFallbackExpressionFactoryId
Sets the unique identifier of theExpressionFactory
to use when the fall back BNF ID is notnull
. This will be used to parse a portion of the query when the registeredexpression factories
cannot parse it.Note: This method is only called if
getFallbackBNFId()
does not returnnull
.- Parameters:
fallbackExpressionFactoryId
- The unique identifier of theExpressionFactory
-
setHandleAggregate
public void setHandleAggregate(boolean handleAggregate) Sets whether theExpression
handles a collection of sub-expressions that are aggregated by logical or arithmetic operators.- Parameters:
handleAggregate
-true
if the sub-expression to parse might have several logical and/or arithmetic expressions;false
otherwise
-
setHandleCollection
public void setHandleCollection(boolean handleCollection) Sets whether theExpression
handles a collection of sub-expressions that are separated by commas.- Parameters:
handleCollection
-true
if the sub-expression to parse might have several sub-expressions separated by commas;false
otherwise
-
setHandleNestedArray
public void setHandleNestedArray(boolean handleNestedArray) Sets whether this BNF supports nested array or not. A nested array is a sub-expression with its child being a collection expression: (item_1, item_2, ..., item_n).- Parameters:
handleNestedArray
-true
if the expression represented by this BNF can be a nested array;false
otherwise- Since:
- 2.5
-
setHandleSubExpression
public void setHandleSubExpression(boolean handleSubExpression) Sets whether this BNF handles parsing a sub-expression, i.e. parsing an expression encapsulated by parenthesis. Which in fact would be handled by the fallbackExpressionFactory
. The default behavior is to not handle it.A good example for using this option is when an
Expression
cannot use anyExpressionFactory
for creating a child object, parsing will use the fallbackExpressionFactory
, if one was specified. So when this is set totrue
, the fallbackExpressionFactory
will be immediately invoked.Let's say we want to parse "SELECT e FROM (SELECT a FROM Address a) e",
FromClause
cannot use a factory for parsing the entity name (that's what usually theFROM
clause has) so it uses the fallback factory to createIdentificationVariableDeclaration
. ThenIdentificationVariableDeclaration
also cannot use any factory to create its child object so it uses the fallback factory to createRangeVariableDeclaration
. By changing the status of for handling the sub-expression for the BNFs for those objects, then a subquery can be created byRangeVariableDeclaration
.
In order to get this working, the following would have to be done into the grammar:FromClause |- IdentificationVariableDeclaration |- RangeVariableDeclaration |- SubExpression(subquery)
public class MyJPQLGrammar extends AbstractJPQLGrammar { @Override protected void initializeBNFs() { setHandleSubExpression(InternalFromClauseBNF.ID, true); setHandleSubExpression(InternalSimpleFromClauseBNF.ID, true); setHandleSubExpression(IdentificationVariableDeclarationBNF.ID, true); setHandleSubExpression(RangeVariableDeclarationBNF.ID, true); } }
- Parameters:
handleSubExpression
-true
to let the creation of a sub-expression be created by the fallbackExpressionFactory
registered with this BNF;false
otherwise (which is the default value)
-
toString
-
toString
Adds to the given builder more information about thisJPQLQueryBNF
.- Parameters:
sb
- The builder used to add information about this class
-