Returns the value at index, or null if the array has no value at index.
(int index)
| 289 | * at {@code index}. |
| 290 | */ |
| 291 | public Object opt(int index) { |
| 292 | if (index < 0 || index >= values.size()) { |
| 293 | return null; |
| 294 | } |
| 295 | return values.get(index); |
| 296 | } |
| 297 | |
| 298 | /** |
| 299 | * Removes and returns the value at {@code index}, or null if the array has no value |
no test coverage detected