Interface JPQLContextView
-
- All Known Subinterfaces:
JPQLJoinContextView,JPQLJoinSelectSingleContextView,JPQLSelectContextView,JPQLSelectSingleContextView
- All Known Implementing Classes:
JPQLContext
public interface JPQLContextViewThe interface provides a view on JPQL Context. The view can be used to access different JPQL context type implementations.- See Also:
JPQLContextType,JPQLContextType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetJPAEntityAlias()The method returns a JPA entity alias name for which the JPQL context is relevant.StringgetJPAEntityName()The method returns a JPA entity name for which the JPQL context is relevant.JPQLContextTypegetType()The method returns a JPQL context type
-
-
-
Method Detail
-
getJPAEntityName
String getJPAEntityName()
The method returns a JPA entity name for which the JPQL context is relevant.- Returns:
- JPA entity name
-
getJPAEntityAlias
String getJPAEntityAlias()
The method returns a JPA entity alias name for which the JPQL context is relevant.- Returns:
- JPA entity alias name
-
getType
JPQLContextType getType()
The method returns a JPQL context type- Returns:
- an instance of type
JPQLContextType
-
-