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 super X, Y> attribute) Create a fetch join to the specified single-valued attribute using an inner join. |
Fetch | fetch(SingularAttribute super X, Y> attribute, JoinType jt) Create a fetch join to the specified single-valued attribute using the given join type. |
Path | get(SingularAttribute super X, Y> 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 super X, Y> attribute, JoinType jt) Create a join to the specified single-valued attribute using the given join type. |
CollectionJoin | join(CollectionAttribute super X, Y> collection, JoinType jt) Create a join to the specified Collection-valued attribute using the given join type. |
SetJoin | join(SetAttribute super X, Y> set, JoinType jt) Create a join to the specified Set-valued attribute using the given join type. |
ListJoin | join(ListAttribute super X, Y> list, JoinType jt) Create a join to the specified List-valued attribute using the given join type. |
MapJoin | join(MapAttribute super X, K, V> 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 super X, Y> attribute) Create an inner join to the specified single-valued attribute. |
CollectionJoin | join(CollectionAttribute super X, Y> collection) Create an inner join to the specified Collection-valued attribute. |
SetJoin | join(SetAttribute super X, Y> set) Create an inner join to the specified Set-valued attribute. |
ListJoin | join(ListAttribute super X, Y> list) Create an inner join to the specified List-valued attribute. |
MapJoin | join(MapAttribute super X, K, V> 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. |