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

Method getInt

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

Source from the content-addressed store, hash-verified

314 }
315
316 public int getInt(Properties tbl, Configuration conf) {
317 String value = lookupValue(tbl, conf);
318 if (value != null) {
319 return Integer.parseInt(value);
320 }
321 return ((Number) defaultValue).intValue();
322 }
323
324 public int getInt(Configuration conf) {
325 return getInt(null, conf);

Callers 8

recoverFilesMethod · 0.45
recoverFileMethod · 0.45
WriterOptionsMethod · 0.45
OptionsMethod · 0.45
RecordReaderImplMethod · 0.45
getRecordWriterMethod · 0.45
getRecordWriterMethod · 0.45

Calls 2

lookupValueMethod · 0.95
parseIntMethod · 0.80

Tested by

no test coverage detected