Skip to content

Instantly share code, notes, and snippets.

@nwillc
Created September 22, 2016 14:54
Show Gist options
  • Save nwillc/5f53fc4c2b242efe9d7defb0702e508a to your computer and use it in GitHub Desktop.
Save nwillc/5f53fc4c2b242efe9d7defb0702e508a to your computer and use it in GitHub Desktop.
public final class ExtractorFactory<B> {
/* ... */
public <T> ExtractorFactory<B> add(BiConsumer<B, T> setter,
ThrowingBiFunction<ResultSet, Integer, T> getter,
Integer index) { /* ... */ }
public <T> ExtractorFactory<B> add(BiConsumer<B, T> setter,
ThrowingBiFunction<ResultSet, String, T> getter,
String column) { /* ... */ }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment