Package com.querydsl.core
Class JoinExpression
java.lang.Object
com.querydsl.core.JoinExpression
- All Implemented Interfaces:
Serializable
JoinExpression is a join element in a Query instance.- Author:
- tiwe
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJoinExpression(JoinType type, Expression<?> target) Create a new JoinExpression instanceJoinExpression(JoinType type, Expression<?> target, @Nullable Predicate condition, Set<JoinFlag> flags) Create a new JoinExpression instance -
Method Summary
-
Constructor Details
-
JoinExpression
Create a new JoinExpression instance- Parameters:
type- type of jointarget- target of join
-
JoinExpression
public JoinExpression(JoinType type, Expression<?> target, @Nullable @Nullable Predicate condition, Set<JoinFlag> flags) Create a new JoinExpression instance- Parameters:
type- type of jointarget- target of joincondition- join condition or null, if none is usedflags- join flags
-
-
Method Details