Say you have a domain class that has an ArrayList attribute. What is the best practise when writing getters and setters for this type of instance (to avoid it being modified)?
|
feedback
|
| |||
|
feedback
|
|
Return a List that is unmodifiable using the | |||
|
feedback
|
|
You can use Collections.unmodifiableList(). There are equivalents for the other major collections types. | |||
|
feedback
|
|
Probably best practice is to move the code that operates on the list into the domain class. Possibly add a domain class that represents the sequence in a way appropriate to the domain. If you are desperate to expose the list, then there is a choice:
Note if the elements of the list are mutable, you might want to do something about those too. | |||
|
feedback
|
|
lweller's response is the what I would do in most cases, but it does throw an | ||||
|
feedback
|
|
Also consider making an immutable snapshot of the list.
| |||
|
feedback
|
|
We have a naming convention where
gives you a read-only list. There might be setters/getters in addition to that with the proper access modifiers. | |||
|
feedback
|
|
Use the guava ImmutableList class. Your getter should then follow the form:
The advantage of guava over the Collections.unmodifiableList is that it reveals to the client that your colllection is immutable in the method signature, so there's very little chance of people mistakenly trying to add something to the collection. | |||
|
feedback
|