I am reading the Book O'reilly Functional Programming for Java Developers from Dean Wampler.
On the page 9, It uses an example titled:
"Consider the following example, where a mutable List is used to hold a customer's orders:
public class Customer {
//No setter method
private final List <Order> orders;
public List <Order> getOrders() {return orders;}
public Customer (...) {...}
Ok.
according to the book, if I assign final to a List it means that it will not mutate because it prevents the reassignment of its value.
What its the meaning of (...) & {...}
Thank you very much for the explanation in advance.