Returns a List representation of the Job graph. Returned list is an ArrayList @return List
()
| 410 | * @return List<JobStats> |
| 411 | */ |
| 412 | @SuppressWarnings("unchecked") |
| 413 | public List<JobStats> getJobList() { |
| 414 | return IteratorUtils.toList(iterator()); |
| 415 | } |
| 416 | |
| 417 | public Iterator<JobStats> iterator() { |
| 418 | return new Iterator<JobStats>() { |