I have a class with a getter that returns its private field List.
Class MyClass {
private List<String> myList;
public List<String> getMyList(){
return myList;
}
}
But the caller of the getter method cannot add or remove elements from that List.
MyClass instance = new MyClass();
List<String> hisList = instance.getMyList();
hisList.add("new element");
UnsupportedOperationException was thrown.
I know that getter returns a reference to that list, but why is that list read-only at caller side? Note I have not returned Collections.unmodifiableList() in the getter.
UPDATE:
Sorry, I created a fix-sized list by Arrays.asList, that why ;)