Uses of Class
com.couchbase.client.java.query.dsl.clause.UpdateForClause
Package | Description |
---|---|
com.couchbase.client.java.query.dsl.clause |
Clauses are mini-DSL that can help you produce a well-formed
Expression for specific parts of some N1QL statement,
aka clauses. |
-
Uses of UpdateForClause in com.couchbase.client.java.query.dsl.clause
Methods in com.couchbase.client.java.query.dsl.clause that return UpdateForClause Modifier and Type Method Description static UpdateForClause
UpdateForClause. forIn(String variable, String path)
Creates an updateFor clause that starts withFOR variable IN path
.static UpdateForClause
UpdateForClause. forWithin(String variable, String path)
Creates an updateFor clause that starts withFOR variable WITHIN path
.UpdateForClause
UpdateForClause. in(String variable, String path)
Adds a "variable IN path
" section to the clause.UpdateForClause
UpdateForClause. within(String variable, String path)
Adds a "variable WITHIN path
" section to the clause.