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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
||||
|
|
|
You can use the Collections.unmodifiableList. As short example is available here. |
|||
|
|