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 interface Bindings
Factory for BindMarker capturing binding values.

A Bindings object is typically used with StatementBuilder.

Since:
4.2
Author:
Mark Paluch
  • Method Summary

    Modifier and Type
    Method
    Description
    com.datastax.oss.driver.api.querybuilder.BindMarker
    bind(Object value)
    Create a BindMarker for the given value.
  • Method Details

    • bind

      com.datastax.oss.driver.api.querybuilder.BindMarker bind(@Nullable Object value)
      Create a BindMarker for the given value. Using bindings with positional bind markers must consider the usage order within a statement.
      Parameters:
      value - the value to bind, can be null.
      Returns:
      the BindMarker for the given value.