Skip to content

Instantly share code, notes, and snippets.

@nwillc
Last active September 22, 2016 15:15
Show Gist options
  • Save nwillc/2ca44546e01871b07e0370503a3d5a79 to your computer and use it in GitHub Desktop.
Save nwillc/2ca44546e01871b07e0370503a3d5a79 to your computer and use it in GitHub Desktop.
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