What is the best way to get value from java.util.Collection by index?
Thanks.
|
|
|
You shouldn't. a
gives me:
Whilst:
gives me:
Why do you want to do this? Could you not just iterate over the collection? |
|||
|
|
|
In general, there is no good way, as |
|||
|
|
|
You must either wrap your collection in a list ( |
|||
|
|
|
I agree with Matthew Flaschen's answer and just wanted to show examples of the options for the case you cannot switch to List (because a library returns you a Collection):
Or
If you know what generics is I can provide samples for that too. Edit: It's another question what the intent and semantics of the original collection is. |
|||||||
|
|
Convert the collection into an array by using function Object[] toArray(Object[] a) |
|||
|
|
|
you definitively want a List:
Also
If you need the index in order to modify your collection you should note that List provides a special ListIterator that allow you to get the index:
|
||||
|
|
|
I agree that this is generally a bad idea. However, Commons Collections had a nice routine for getting the value by index if you really need to: |
|||
|
|