Interface BindTarget


public interface BindTarget
Target to apply bindings to.
Since:
5.3
Author:
Mark Paluch
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    bind(int index, Object value)
    Bind a value to an index.
    void
    bind(String identifier, Object value)
    Bind a value.
    void
    bindNull(int index, Class<?> type)
    Bind a null value.
    void
    bindNull(String identifier, Class<?> type)
    Bind a null value.
  • Method Details

    • bind

      void bind(String identifier, Object value)
      Bind a value.
      Parameters:
      identifier - the identifier to bind to
      value - the value to bind
    • bind

      void bind(int index, Object value)
      Bind a value to an index. Indexes are zero-based.
      Parameters:
      index - the index to bind to
      value - the value to bind
    • bindNull

      void bindNull(String identifier, Class<?> type)
      Bind a null value.
      Parameters:
      identifier - the identifier to bind to
      type - the type of null value
    • bindNull

      void bindNull(int index, Class<?> type)
      Bind a null value.
      Parameters:
      index - the index to bind to
      type - the type of null value