Last active
September 20, 2016 22:29
-
-
Save nwillc/791710878fd7a426017a034098152b31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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