Interface Neo4jClient.OngoingBindSpec<T,S extends Neo4jClient.BindSpec<S>>

Type Parameters:
S - This specs own type
T - Binding value type
Enclosing interface:
Neo4jClient

public static interface Neo4jClient.OngoingBindSpec<T,S extends Neo4jClient.BindSpec<S>>
Ongoing bind specification.
Since:
6.0
  • Method Summary

    Modifier and Type
    Method
    Description
    to(String name)
    Bind one convertible object to the given name.
    Use a binder function for the previously defined value.
  • Method Details

    • to

      S to(String name)
      Bind one convertible object to the given name.
      Parameters:
      name - The named parameter to bind the value to
      Returns:
      The bind specification itself for binding more values or execution.
    • with

      S with(Function<T,Map<String,Object>> binder)
      Use a binder function for the previously defined value.
      Parameters:
      binder - The binder function to create a map of parameters from the given value
      Returns:
      The bind specification itself for binding more values or execution.