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
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
usingMethods inherited from interface com.couchbase.client.java.query.dsl.path.index.WithPath
withDefer, withDeferAndNode, withDeferAndNodes, withDeferAndNodes, withNode, withNodes, withNodes
-
Method Details
-
where
Adds filtering clause to the secondary index creation.- Parameters:
filterExpression- the expression to use for index filtering.
-
where
Adds filtering clause to the secondary index creation.- Parameters:
filterExpression- the expression to use for index filtering.
-