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. |
Modifier and Type | Method and Description |
---|---|
static UpdateForClause |
UpdateForClause.forIn(String variable,
String path)
Creates an updateFor clause that starts with
FOR variable IN path . |
static UpdateForClause |
UpdateForClause.forWithin(String variable,
String path)
Creates an updateFor clause that starts with
FOR 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. |
Copyright © 2015 Couchbase, Inc.