Interface SelectResultPath
- All Superinterfaces:
LimitPath
,OffsetPath
,OrderByPath
,Path
,Statement
- All Known Subinterfaces:
AsPath
,FromPath
,GroupByPath
,HavingPath
,HintPath
,JoinPath
,KeysPath
,LetPath
,LettingPath
,NestPath
,UnnestPath
,WherePath
- All Known Implementing Classes:
DefaultAsPath
,DefaultFromPath
,DefaultGroupByPath
,DefaultHavingPath
,DefaultHintPath
,DefaultJoinPath
,DefaultKeysPath
,DefaultLetPath
,DefaultLettingPath
,DefaultNestPath
,DefaultSelectResultPath
,DefaultUnnestPath
,DefaultWherePath
public interface SelectResultPath extends OrderByPath
.
- Author:
- Michael Nitschinger
-
Method Summary
Modifier and Type Method Description SelectPath
except()
SelectResultPath
except(SelectResultPath path)
SelectPath
exceptAll()
SelectResultPath
exceptAll(SelectResultPath path)
SelectPath
intersect()
SelectResultPath
intersect(SelectResultPath path)
SelectPath
intersectAll()
SelectResultPath
intersectAll(SelectResultPath path)
SelectPath
union()
SelectResultPath
union(SelectResultPath path)
SelectPath
unionAll()
SelectResultPath
unionAll(SelectResultPath path)
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
-
Method Details
-
union
SelectPath union() -
unionAll
SelectPath unionAll() -
intersect
SelectPath intersect() -
intersectAll
SelectPath intersectAll() -
except
SelectPath except() -
exceptAll
SelectPath exceptAll() -
union
-
unionAll
-
intersect
-
intersectAll
-
except
-
exceptAll
-