Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write a getter for an ArrayList in Java such that the list returned cannot be modified (ideally at compile time). I know there must be some simple way to do this but it is eluding me. Does anybody know how to do this?

share|improve this question
2  
(The language is called Java, not JAVA. It's not an acronym. Edited accordingly.) – Jon Skeet Jan 10 '11 at 20:01
1  
There is no way in Java to prevent modification attempts at compile time. The only choice is to follow the given answers, which prevent modification at runtime by throwing exceptions in modificator methods. – Christian Semrau Jan 10 '11 at 20:08

2 Answers

up vote 5 down vote accepted

Collections.unmodifiableList(...) is simple solution. Better one would be to use ImmutableList from google-guava library

share|improve this answer

You can use the Collections.unmodifiableList. As short example is available here.

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.