Interface LetPath
-
- All Superinterfaces:
GroupByPath,LimitPath,OffsetPath,OrderByPath,Path,SelectResultPath,Statement,WherePath
- All Known Implementing Classes:
DefaultAsPath,DefaultFromPath,DefaultHintPath,DefaultJoinPath,DefaultKeysPath,DefaultLetPath,DefaultNestPath,DefaultUnnestPath
public interface LetPath extends WherePath
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JoinPathinnerJoin(Expression from)JoinPathinnerJoin(String from)NestPathinnerNest(Expression from)NestPathinnerNest(String from)UnnestPathinnerUnnest(Expression path)UnnestPathinnerUnnest(String path)JoinPathjoin(Expression from)JoinPathjoin(String from)JoinPathleftJoin(Expression from)JoinPathleftJoin(String from)NestPathleftNest(Expression from)NestPathleftNest(String from)JoinPathleftOuterJoin(Expression from)JoinPathleftOuterJoin(String from)NestPathleftOuterNest(Expression from)NestPathleftOuterNest(String from)UnnestPathleftOuterUnnest(Expression path)UnnestPathleftOuterUnnest(String path)UnnestPathleftUnnest(Expression path)UnnestPathleftUnnest(String path)WherePathlet(Alias... aliases)NestPathnest(Expression from)NestPathnest(String from)UnnestPathunnest(Expression path)UnnestPathunnest(String path)-
Methods inherited from interface com.couchbase.client.java.query.dsl.path.GroupByPath
groupBy, groupBy
-
Methods inherited from interface com.couchbase.client.java.query.dsl.path.OffsetPath
offset
-
Methods inherited from interface com.couchbase.client.java.query.dsl.path.OrderByPath
orderBy
-
Methods inherited from interface com.couchbase.client.java.query.dsl.path.SelectResultPath
except, except, exceptAll, exceptAll, intersect, intersect, intersectAll, intersectAll, union, union, unionAll, unionAll
-
-
-
-
Method Detail
-
unnest
UnnestPath unnest(String path)
-
innerUnnest
UnnestPath innerUnnest(String path)
-
leftUnnest
UnnestPath leftUnnest(String path)
-
leftOuterUnnest
UnnestPath leftOuterUnnest(String path)
-
join
JoinPath join(Expression from)
-
innerJoin
JoinPath innerJoin(Expression from)
-
leftJoin
JoinPath leftJoin(Expression from)
-
leftOuterJoin
JoinPath leftOuterJoin(Expression from)
-
nest
NestPath nest(Expression from)
-
innerNest
NestPath innerNest(Expression from)
-
leftNest
NestPath leftNest(Expression from)
-
leftOuterNest
NestPath leftOuterNest(Expression from)
-
unnest
UnnestPath unnest(Expression path)
-
innerUnnest
UnnestPath innerUnnest(Expression path)
-
leftUnnest
UnnestPath leftUnnest(Expression path)
-
leftOuterUnnest
UnnestPath leftOuterUnnest(Expression path)
-
-