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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

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.
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.
Joinjoin(SingularAttribute attribute, JoinType jt)
Create a join to the specified single-valued attribute using the given join type.
CollectionJoinjoin(CollectionAttribute collection, JoinType jt)
Create a join to the specified Collection-valued attribute using the given join type.
SetJoinjoin(SetAttribute set, JoinType jt)
Create a join to the specified Set-valued attribute using the given join type.
ListJoinjoin(ListAttribute list, JoinType jt)
Create a join to the specified List-valued attribute using the given join type.
MapJoinjoin(MapAttribute map, JoinType jt)
Create a join to the specified Map-valued attribute using the given join type.
Joinjoin(String attributeName, JoinType jt)
Create a join to the specified attribute using the given join type.
Joinjoin(SingularAttribute attribute)
Create an inner join to the specified single-valued attribute.
CollectionJoinjoin(CollectionAttribute collection)
Create an inner join to the specified Collection-valued attribute.
SetJoinjoin(SetAttribute set)
Create an inner join to the specified Set-valued attribute.
ListJoinjoin(ListAttribute list)
Create an inner join to the specified List-valued attribute.
MapJoinjoin(MapAttribute map)
Create an inner join to the specified Map-valued attribute.
Joinjoin(String attributeName)
Create an inner join to the specified attribute.
MapJoinjoinMap(String attributeName)
Create an inner join to the specified Map-valued attribute.