Example usage for Java javax.persistence.criteria From fields, constructors, methods, implement or subclass
The text is from its open source code.
Fetch | fetch(SingularAttribute attribute) Create a fetch join to the specified single-valued attribute using an inner join. |
Fetch | fetch(SingularAttribute attribute, JoinType jt) Create a fetch join to the specified single-valued attribute using the given join type. |
Path | get(SingularAttribute attribute) Create a path corresponding to the referenced single-valued attribute. |
java.util.Set | getFetches() Return the fetch joins that have been made from this type. |
Set | getJoins() Return the joins that have been made from this bound type. |
Join | join(SingularAttribute attribute, JoinType jt) Create a join to the specified single-valued attribute using the given join type. |
CollectionJoin | join(CollectionAttribute collection, JoinType jt) Create a join to the specified Collection-valued attribute using the given join type. |
SetJoin | join(SetAttribute set, JoinType jt) Create a join to the specified Set-valued attribute using the given join type. |
ListJoin | join(ListAttribute list, JoinType jt) Create a join to the specified List-valued attribute using the given join type. |
MapJoin | join(MapAttribute map, JoinType jt) Create a join to the specified Map-valued attribute using the given join type. |
Join | join(String attributeName, JoinType jt) Create a join to the specified attribute using the given join type. |
Join | join(SingularAttribute attribute) Create an inner join to the specified single-valued attribute. |
CollectionJoin | join(CollectionAttribute collection) Create an inner join to the specified Collection-valued attribute. |
SetJoin | join(SetAttribute set) Create an inner join to the specified Set-valued attribute. |
ListJoin | join(ListAttribute list) Create an inner join to the specified List-valued attribute. |
MapJoin | join(MapAttribute map) Create an inner join to the specified Map-valued attribute. |
Join | join(String attributeName) Create an inner join to the specified attribute. |
MapJoin | joinMap(String attributeName) Create an inner join to the specified Map-valued attribute. |