Example usage for Java javax.persistence.criteria Join fields, constructors, methods, implement or subclass
The text is from its open source code.
join(SingularAttribute super X, Y> attribute) Create an inner join to the specified single-valued attribute. | |
join(SingularAttribute super X, Y> attribute, JoinType jt) Create a join to the specified single-valued attribute using the given join type. |
Selection | alias(String name) Assigns an alias to the selection item. |
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. |
Attribute super Z,?> | getAttribute() Return the metamodel attribute corresponding to the join. |
java.util.Set | getFetches() Return the fetch joins that have been made from this type. |
Class extends X> | getJavaType() Return the Java type of the tuple element. |
Set | getJoins() Return the joins that have been made from this bound type. |
JoinType | getJoinType() Return the join type. |
Predicate | in(Object... values) Create a predicate to test whether the expression is a member of the argument list. |
Predicate | isNotNull() Create a predicate to test whether the expression is not null. |