Interface StatementBuilder.BindFunction<S>

Type Parameters:
S -
Enclosing class:
StatementBuilder<S extends com.datastax.oss.driver.api.querybuilder.BuildableQuery>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface StatementBuilder.BindFunction<S>
Binding function. This function gets called with the current statement and TermFactory.
  • Method Summary

    Modifier and Type
    Method
    Description
    bind(S statement, TermFactory factory)
    Apply a binding operation on the statement and return the modified statement instance.
  • Method Details

    • bind

      S bind(S statement, TermFactory factory)
      Apply a binding operation on the statement and return the modified statement instance.
      Parameters:
      statement - the initial statement instance.
      factory - factory to create Term objects.
      Returns:
      the modified statement instance.