Just because something can do more, doesn't make it the right tool for the job.
In the case of Iterator vs. ListIterator, not every collection needs support for bidirectional iteration. Also, the amount of mutating power that the ListIterator has is not necessarily appropriate for general iteration. Lastly, ListIterator provides ways of accessing the index of an element, but many collections do not have a notion of an index. So you could say that the ListIterator is too powerful for most collections. In fact, some people may already consider Iterator to be "too powerful", as it provides a remove method, which is not always appropriate either.
The basic guiding factor here is the "List" part of ListIterator; while Iterator should be useful for all collections, ListIterator is specifically intended for collections which, like lists, have a well-defined linear ordering of their elements.
Some examples of where ListIterator would be useful:
- Singly & Doubly Linked Lists
- Array Lists
- Other collections with a well-defined linear ordering
Some examples of where ListIterator is not suited:
- Trees (many of them, anyways)
- Maps
- Sets
- Other collection which don't have a linear ordering
ListIteratorinherits fromIterator, I am not sure you really could deprecate it, even if you wanted to :) – Merlyn Morgan-Graham Jul 12 '11 at 5:43