Java javax.persistence.criteria Join fields, constructors, methods, implement or subclass

Example usage for Java javax.persistence.criteria Join fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.persistence.criteria Join.

The text is from its open source code.

Implementation

javax.persistence.criteria.Join has the following implementations.
Click this link to see all its implementation.

Constructor

join(SingularAttribute attribute)
Create an inner join to the specified single-valued attribute.
join(SingularAttribute attribute, JoinType jt)
Create a join to the specified single-valued attribute using the given join type.

Method

Selectionalias(String name)
Assigns an alias to the selection item.
Fetchfetch(SingularAttribute attribute)
Create a fetch join to the specified single-valued attribute using an inner join.
Fetchfetch(SingularAttribute attribute, JoinType jt)
Create a fetch join to the specified single-valued attribute using the given join type.
Pathget(SingularAttribute attribute)
Create a path corresponding to the referenced single-valued attribute.
AttributegetAttribute()
Return the metamodel attribute corresponding to the join.
java.util.Set>getFetches()
Return the fetch joins that have been made from this type.
ClassgetJavaType()
Return the Java type of the tuple element.
Set>getJoins()
Return the joins that have been made from this bound type.
JoinTypegetJoinType()
Return the join type.
Predicatein(Object... values)
Create a predicate to test whether the expression is a member of the argument list.
PredicateisNotNull()
Create a predicate to test whether the expression is not null.