MCPcopy Create free account
hub / github.com/jOOQ/jOOQ / inputStreamReader

Method inputStreamReader

jOOQ/src/main/java/org/jooq/Source.java:466–475  ·  view source on GitHub ↗
(InputStream is)

Source from the content-addressed store, hash-verified

464 }
465
466 private final Reader inputStreamReader(InputStream is) throws UnsupportedEncodingException {
467 if (charsetName != null)
468 return new InputStreamReader(is, charsetName);
469 else if (charset != null)
470 return new InputStreamReader(is, charset);
471 else if (charsetDecoder != null)
472 return new InputStreamReader(is, charsetDecoder);
473 else
474 return new InputStreamReader(is);
475 }
476
477 @Override
478 public String toString() {

Callers 1

readerMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected