MCPcopy Index your code
hub / github.com/apache/orc / getBoolean

Method getBoolean

java/core/src/java/org/apache/orc/OrcConf.java:385–391  ·  view source on GitHub ↗
(Properties tbl, Configuration conf)

Source from the content-addressed store, hash-verified

383 }
384
385 public boolean getBoolean(Properties tbl, Configuration conf) {
386 String value = lookupValue(tbl, conf);
387 if (value != null) {
388 return Boolean.parseBoolean(value);
389 }
390 return (Boolean) defaultValue;
391 }
392
393 public boolean getBoolean(Configuration conf) {
394 return getBoolean(null, conf);

Callers 9

ReaderOptionsMethod · 0.45
WriterOptionsMethod · 0.45
OptionsMethod · 0.45
RecordReaderImplMethod · 0.45
StringBaseTreeWriterMethod · 0.45
buildOptionsMethod · 0.45
buildOptionsMethod · 0.45
getDefaultWorkFileMethod · 0.45

Calls 1

lookupValueMethod · 0.95

Tested by

no test coverage detected