Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
final Set<Expression> exps = meng.getExps();
Iterator<Expression> iterator = exps.iterator();
final Expression displayedExp = exps.iterator().next();
exps.remove(displayedExp);

This code would return the following run-time exceptions trace:

null
java.lang.UnsupportedOperationException
        at java.util.Collections$UnmodifiableCollection.remove(Collections.java:1021)

The Set implementation of meng.getExps() is a LinkedHashSet.

share|improve this question

2 Answers

up vote 5 down vote accepted

Sorry, you are out of luck: The Set was wrapped with Collections.unmodifiableCollection, which does exactly this: making the collection unmodifiable. The only thing you can do is copy the content into another Set and work with this.

share|improve this answer
and is there any utility like Collection.copy to do that? – simpatico Jul 26 '10 at 21:49
1  
E.g. Set<Expression> set = new HashSet<Expression>(exps); – Landei Jul 26 '10 at 21:53

Your getter is explicitly returning you an UnmodifiableCollection, which is a wrapper of sorts around Sets that prevents modification.

In other words, the API is telling you "this is my collection, please look but don't touch!"

If you want to modify it, you should copy it into a new Set. There are copying constructors for HashSet that are great for this purpose.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.