Interface ResultSetToTuple.AttributeReceiver

Enclosing class:
ResultSetToTuple
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 static interface ResultSetToTuple.AttributeReceiver
A functional interface for defining lambda expressions that do something with an attribute name and an attribute type.
  • Method Summary

    Modifier and Type Method Description
    void process​(java.lang.String name, java.lang.Class<?> type)
    Process an attribute.
  • Method Details

    • process

      void process​(java.lang.String name, java.lang.Class<?> type)
      Process an attribute.
      Parameters:
      name - Name of attribute.
      type - Type of attribute.