Class Collections.SatisfiesBuilder

java.lang.Object
com.couchbase.client.java.query.dsl.functions.Collections.SatisfiesBuilder
Enclosing class:
Collections

public static final class Collections.SatisfiesBuilder
extends Object
  • Method Details

    • in

      public Collections.SatisfiesBuilder in​(String variable, Expression expression)
      Add an in-expression to the clause (a variable name and its associated expression)
    • within

      public Collections.SatisfiesBuilder within​(String variable, Expression expression)
      Add a within-expression to the clause (a variable name and its associated expression)
    • satisfies

      public Expression satisfies​(Expression condition)
      Sometimes the conditions you want to filter need to be applied to the arrays nested inside the document. The SATISFIES keyword is used to specify the filter condition. This method also ends the comprehension. See end() to avoid setting any condition, instead just ending the comprehension.
    • end

      public final Expression end()
      Ends the comprehension without specifying any condition
    • end

      protected final Expression end​(String conditionKeyword, Expression condition)