Returns the value at index if it exists and is a long or can be coerced to a long. Returns 0 otherwise.
(int index)
| 429 | * can be coerced to a long. Returns 0 otherwise. |
| 430 | */ |
| 431 | public long optLong(int index) { |
| 432 | return optLong(index, 0L); |
| 433 | } |
| 434 | |
| 435 | /** |
| 436 | * Returns the value at {@code index} if it exists and is a long or |