Possible Duplicate:
Remove duplicates from a list
Is there any method in Java List that I can use to remove duplicates?
Is there any method in Java List that I can use to remove duplicates? |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
No, there is no method on
You will either need to use a |
|||
|
|
|
Short answer: no, there isn't. The You could implement your own list, that doesn't allow duplicates being added. The backing list would be an arraylist:
Addition - you could even add the Note - with the same technique you could implement a custom |
||||
|
|
|
If the order of the elements is important, you might want to consider instantiating a LinkedHashSet, passing your list to its constructor. The iterator that you can then call on this LinkedHashSet will give you all of your list items, in the original order, but with the duplicates removed. |
|||
|
|
|
There is no built-in method to remove duplicates from a Your options are:
And there are other variations. Caveat, all solutions based on |
||||
|
|