Last active
September 22, 2016 15:15
-
-
Save nwillc/2ca44546e01871b07e0370503a3d5a79 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 Extractors { | |
private Extractors() { | |
} | |
public static final ThrowingBiFunction<ResultSet, Integer, String> STRING_I | |
= ResultSet::getString; | |
public static final ThrowingBiFunction<ResultSet, String, String> STRING_S | |
= ResultSet::getString; | |
/* ... */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment