Interface SqlResultConsumer<T>

  • Type Parameters:
    T - The entity type
    All Superinterfaces:
    java.util.function.BiConsumer<T,​ResultConsumer.Context<java.sql.ResultSet>>, ResultConsumer<T,​java.sql.ResultSet>
    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 SqlResultConsumer<T>
    extends ResultConsumer<T,​java.sql.ResultSet>
    A mapping function specific to SQL.
    Since:
    1.0.0
    Author:
    graemerocher
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ROLE
      The role name for the type.
    • Method Summary

      • Methods inherited from interface java.util.function.BiConsumer

        accept, andThen
    • Field Detail