(String key, long defaultValue)
| 377 | // TODO NUTCH-1709 Generated classes o.a.n.storage.Host and |
| 378 | // o.a.n.storage.ProtocolStatus contain methods not defined in source .avsc |
| 379 | public long getLong(String key, long defaultValue) { |
| 380 | if (!contains(key)) |
| 381 | return defaultValue; |
| 382 | return Long.parseLong(getValue(key, null)); |
| 383 | } |
| 384 | |
| 385 | private static final Tombstone TOMBSTONE = new Tombstone(); |
| 386 |
no test coverage detected