Class DefaultWherePath
- java.lang.Object
-
- com.couchbase.client.java.query.dsl.path.AbstractPath
-
- com.couchbase.client.java.query.dsl.path.DefaultOffsetPath
-
- com.couchbase.client.java.query.dsl.path.DefaultLimitPath
-
- com.couchbase.client.java.query.dsl.path.DefaultOrderByPath
-
- com.couchbase.client.java.query.dsl.path.DefaultSelectResultPath
-
- com.couchbase.client.java.query.dsl.path.DefaultGroupByPath
-
- com.couchbase.client.java.query.dsl.path.DefaultWherePath
-
- All Implemented Interfaces:
GroupByPath,LimitPath,OffsetPath,OrderByPath,Path,SelectResultPath,WherePath,Statement
- Direct Known Subclasses:
DefaultLetPath
public class DefaultWherePath extends DefaultGroupByPath implements WherePath
.- Author:
- Michael Nitschinger
-
-
Constructor Summary
Constructors Constructor Description DefaultWherePath(AbstractPath parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GroupByPathwhere(Expression expression)Filter resulting rows based on the given expression.GroupByPathwhere(String expression)Filter resulting rows based on the given expression.-
Methods inherited from class com.couchbase.client.java.query.dsl.path.DefaultGroupByPath
groupBy, groupBy
-
Methods inherited from class com.couchbase.client.java.query.dsl.path.DefaultSelectResultPath
except, except, exceptAll, exceptAll, intersect, intersect, intersectAll, intersectAll, union, union, unionAll, unionAll
-
Methods inherited from class com.couchbase.client.java.query.dsl.path.DefaultOrderByPath
orderBy
-
Methods inherited from class com.couchbase.client.java.query.dsl.path.DefaultLimitPath
limit
-
Methods inherited from class com.couchbase.client.java.query.dsl.path.DefaultOffsetPath
offset
-
Methods inherited from class com.couchbase.client.java.query.dsl.path.AbstractPath
element, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
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
-
-
-
-
Constructor Detail
-
DefaultWherePath
public DefaultWherePath(AbstractPath parent)
-
-
Method Detail
-
where
public GroupByPath where(Expression expression)
Description copied from interface:WherePathFilter resulting rows based on the given expression.
-
where
public GroupByPath where(String expression)
Description copied from interface:WherePathFilter resulting rows based on the given expression. The given string will be converted into an expression internally.
-
-