Class JoinExpression

java.lang.Object
com.querydsl.core.JoinExpression
All Implemented Interfaces:
Serializable

@Immutable public final class JoinExpression extends Object implements Serializable
JoinExpression is a join element in a Query instance.
Author:
tiwe
See Also:
  • Constructor Details

    • JoinExpression

      public JoinExpression(JoinType type, Expression<?> target)
      Create a new JoinExpression instance
      Parameters:
      type - type of join
      target - 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 join
      target - target of join
      condition - join condition or null, if none is used
      flags - join flags
  • Method Details