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

Method getLong

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

Source from the content-addressed store, hash-verified

339 }
340
341 public long getLong(Properties tbl, Configuration conf) {
342 String value = lookupValue(tbl, conf);
343 if (value != null) {
344 return Long.parseLong(value);
345 }
346 return ((Number) defaultValue).longValue();
347 }
348
349 public long getLong(Configuration conf) {
350 return getLong(null, conf);

Callers 7

WriterOptionsMethod · 0.45
WriterImplMethod · 0.45
StringBaseTreeWriterMethod · 0.45
setSearchArgumentMethod · 0.45
getRecordReaderMethod · 0.45
buildOptionsMethod · 0.45
createRecordReaderMethod · 0.45

Calls 1

lookupValueMethod · 0.95

Tested by

no test coverage detected