MCPcopy Create free account
hub / github.com/apache/orc / getDouble

Method getDouble

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

Source from the content-addressed store, hash-verified

399 }
400
401 public double getDouble(Properties tbl, Configuration conf) {
402 String value = lookupValue(tbl, conf);
403 if (value != null) {
404 return Double.parseDouble(value);
405 }
406 return ((Number) defaultValue).doubleValue();
407 }
408
409 public double getDouble(Configuration conf) {
410 return getDouble(null, conf);

Callers 6

WriterOptionsMethod · 0.45
OptionsMethod · 0.45
MemoryManagerImplMethod · 0.45
WriterImplMethod · 0.45
buildOptionsMethod · 0.45

Calls 1

lookupValueMethod · 0.95

Tested by

no test coverage detected