Interface JPQLBuilderFactory
public interface JPQLBuilderFactory
Factory interface for creating following instances
- JPQL statement builders of type
JPQLStatement.JPQLStatementBuilder - JPQL context builder of type
JPQLContext.JPQLContextBuilder
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetContextBuilder(JPQLContextType contextType) The method returns a JPQL context builder for building JPQL Context object.getJPAMethodContextBuilder(JPQLContextType contextType) The method returns a JPA method context builder for building JPA Method context object.getStatementBuilder(JPQLContextView context) The method returns JPQL statement builder for building JPQL statements.
-
Method Details
-
getStatementBuilder
The method returns JPQL statement builder for building JPQL statements.- Parameters:
context- isJPQLContextthat determines the type of JPQL statement builder. The parameter cannot be null.- Returns:
- an instance of JPQLStatementBuilder
-
getContextBuilder
The method returns a JPQL context builder for building JPQL Context object.- Parameters:
contextType- isJPQLContextTypethat determines the type of JPQL context builder. The parameter cannot be null.- Returns:
- an instance of JPQLContextBuilder
-
getJPAMethodContextBuilder
The method returns a JPA method context builder for building JPA Method context object.- Parameters:
contextType- isJPQLContextTypethat determines the type of JPQL context builder. The parameter cannot be null.- Returns:
- an instance of JPAMethodContextBuilder
-