I read Effective Java, and there written
If a class cannot be made immutable, limit its mutability as much as possible...
and
...make every field final unless there is a compelling reason to make it nonfinal.
So need I always make all my POJO(for example simple Bookclass with ID, Title and Author fields) classes immutable? And when I want to change state of my object(for example user change it in table where represented many Books), instead of setters use method like this:
public Book changeAuthor(String author) {
return new Book(this.id, this.title, author); //Book constructor is private
}
But I thing is really not good idea..
Please, explain me when to make class immutable.