Skip to content

Instantly share code, notes, and snippets.

@nwillc
Last active September 20, 2016 22:29
Show Gist options
  • Save nwillc/791710878fd7a426017a034098152b31 to your computer and use it in GitHub Desktop.
Save nwillc/791710878fd7a426017a034098152b31 to your computer and use it in GitHub Desktop.
public final class ExtractorFactory<B> {
public ExtractorFactory<B> factory(Supplier<B> factory) { /* ... */ }
public <T> ExtractorFactory<B> add(
BiConsumer<B, T> setter,
BiFunction<ResultSet, Integer, T> getter,
Integer index) { /* ... */ }
public Extractor<B> getExtractor() { /* ... */ }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment