Interface WherePath
-
- All Superinterfaces:
Path,Statement,UsingWithPath,WithPath
- All Known Implementing Classes:
DefaultWherePath
@Experimental @Public public interface WherePath extends UsingWithPath
Where clause in the Index creation DSL.- Since:
- 2.2
- Author:
- Simon Baslé
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UsingWithPathwhere(Expression filterExpression)Adds filtering clause to the secondary index creation.UsingWithPathwhere(String filterExpression)Adds filtering clause to the secondary index creation.-
Methods inherited from interface com.couchbase.client.java.query.dsl.path.index.UsingWithPath
using
-
Methods inherited from interface com.couchbase.client.java.query.dsl.path.index.WithPath
withDefer, withDeferAndNode, withDeferAndNodes, withDeferAndNodes, withNode, withNodes, withNodes
-
-
-
-
Method Detail
-
where
UsingWithPath where(Expression filterExpression)
Adds filtering clause to the secondary index creation.- Parameters:
filterExpression- the expression to use for index filtering.
-
where
UsingWithPath where(String filterExpression)
Adds filtering clause to the secondary index creation.- Parameters:
filterExpression- the expression to use for index filtering.
-
-