Interface JPQLBuilderFactory
-
public interface JPQLBuilderFactoryFactory interface for creating following instances- JPQL statement builders of type
JPQLStatement.JPQLStatementBuilder - JPQL context builder of type
JPQLContext.JPQLContextBuilder
- See Also:
ODataJPAFactory
- JPQL statement builders of type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JPQLContext.JPQLContextBuildergetContextBuilder(JPQLContextType contextType)The method returns a JPQL context builder for building JPQL Context object.JPAMethodContext.JPAMethodContextBuildergetJPAMethodContextBuilder(JPQLContextType contextType)The method returns a JPA method context builder for building JPA Method context object.JPQLStatement.JPQLStatementBuildergetStatementBuilder(JPQLContextView context)The method returns JPQL statement builder for building JPQL statements.
-
-
-
Method Detail
-
getStatementBuilder
JPQLStatement.JPQLStatementBuilder getStatementBuilder(JPQLContextView context)
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
JPQLContext.JPQLContextBuilder getContextBuilder(JPQLContextType contextType)
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
JPAMethodContext.JPAMethodContextBuilder getJPAMethodContextBuilder(JPQLContextType contextType)
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
-
-