Why doesn't the Iterator interface extend the Enumeration interface?
Created May 4, 2012
John Zukowski If the Iterator interface extended the Enumeration interface, the Iterator interface would end up with five methods where two methods just called other methods in the interface. The designers of the framework wanted to get rid of the cumbersome Enumeration method names so had the Iterator interface stand on its own with new shorter method names.