()
| 2358 | } |
| 2359 | |
| 2360 | @Override |
| 2361 | public Object next() { |
| 2362 | checkModCount(modCount); |
| 2363 | if (cursor == len) { |
| 2364 | throw new NoSuchElementException(); |
| 2365 | } |
| 2366 | return get(cursor++); |
| 2367 | } |
| 2368 | |
| 2369 | @Override |
| 2370 | public boolean hasPrevious() { |
nothing calls this directly
no test coverage detected