Class JoinSpecification
- java.lang.Object
-
- org.mybatis.dynamic.sql.select.join.JoinSpecification
-
public class JoinSpecification extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JoinSpecification.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description JoinType
joinType()
<R> Stream<R>
mapJoinCriteria(Function<JoinCriterion,R> mapper)
TableExpression
table()
static JoinSpecification.Builder
withJoinTable(TableExpression table)
-
-
-
Method Detail
-
table
public TableExpression table()
-
mapJoinCriteria
public <R> Stream<R> mapJoinCriteria(Function<JoinCriterion,R> mapper)
-
joinType
public JoinType joinType()
-
withJoinTable
public static JoinSpecification.Builder withJoinTable(TableExpression table)
-
-