I\'m sure there\'s a good reason, but could someone please explain why the java.util.Set interface lacks get(int Index), or any similar get()
java.util.Set
get(int Index)
get()
Because sets have no ordering. Some implementations do (particularly those implementing the java.util.SortedSet interface), but that is not a general property of sets.
java.util.SortedSet
If you're trying to use sets this way, you should consider using a list instead.