Class DefaultSelectPath
- java.lang.Object
-
- com.couchbase.client.java.query.dsl.path.AbstractPath
-
- com.couchbase.client.java.query.dsl.path.DefaultSelectPath
-
- All Implemented Interfaces:
Path,SelectPath
public class DefaultSelectPath extends AbstractPath implements SelectPath
.- Author:
- Michael Nitschinger
-
-
Constructor Summary
Constructors Constructor Description DefaultSelectPath(AbstractPath parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FromPathselect(Expression... expressions)FromPathselect(String... expressions)FromPathselectAll(Expression... expressions)FromPathselectAll(String... expressions)FromPathselectDistinct(Expression... expressions)FromPathselectDistinct(String... expressions)FromPathselectDistinctRaw(Expression expression)FromPathselectDistinctRaw(String expression)FromPathselectRaw(Expression expression)FromPathselectRaw(String expression)-
Methods inherited from class com.couchbase.client.java.query.dsl.path.AbstractPath
element, toString
-
-
-
-
Constructor Detail
-
DefaultSelectPath
public DefaultSelectPath(AbstractPath parent)
-
-
Method Detail
-
select
public FromPath select(Expression... expressions)
- Specified by:
selectin interfaceSelectPath
-
selectAll
public FromPath selectAll(Expression... expressions)
- Specified by:
selectAllin interfaceSelectPath
-
selectDistinct
public FromPath selectDistinct(Expression... expressions)
- Specified by:
selectDistinctin interfaceSelectPath
-
selectRaw
public FromPath selectRaw(Expression expression)
- Specified by:
selectRawin interfaceSelectPath
-
selectDistinctRaw
public FromPath selectDistinctRaw(Expression expression)
- Specified by:
selectDistinctRawin interfaceSelectPath
-
select
public FromPath select(String... expressions)
- Specified by:
selectin interfaceSelectPath
-
selectAll
public FromPath selectAll(String... expressions)
- Specified by:
selectAllin interfaceSelectPath
-
selectDistinct
public FromPath selectDistinct(String... expressions)
- Specified by:
selectDistinctin interfaceSelectPath
-
selectRaw
public FromPath selectRaw(String expression)
- Specified by:
selectRawin interfaceSelectPath
-
selectDistinctRaw
public FromPath selectDistinctRaw(String expression)
- Specified by:
selectDistinctRawin interfaceSelectPath
-
-