Interface Neo4jClient.BindSpec<S extends Neo4jClient.BindSpec<S>>

Type Parameters:
S - This specs own type
All Known Subinterfaces:
Neo4jClient.RunnableSpec, Neo4jClient.RunnableSpecBoundToDatabase, Neo4jClient.RunnableSpecBoundToDatabaseAndUser, Neo4jClient.RunnableSpecBoundToUser, Neo4jClient.UnboundRunnableSpec, ReactiveNeo4jClient.RunnableSpec, ReactiveNeo4jClient.RunnableSpecBoundToDatabase, ReactiveNeo4jClient.RunnableSpecBoundToDatabaseAndUser, ReactiveNeo4jClient.RunnableSpecBoundToUser, ReactiveNeo4jClient.UnboundRunnableSpec
Enclosing interface:
Neo4jClient

public static interface Neo4jClient.BindSpec<S extends Neo4jClient.BindSpec<S>>
Contract for binding parameters to a query.
Since:
6.0
  • Method Details

    • bind

      <T> Neo4jClient.OngoingBindSpec<T,S> bind(@Nullable T value)
      Parameters:
      value - The value to bind to a query
      Returns:
      An ongoing bind spec for specifying the name that value should be bound to or a binder function
    • bindAll

      S bindAll(Map<String,Object> parameters)