Newer
Older
commitconf24 / snippets / Movie.java
@Antonio Muñoz Antonio Muñoz on 16 Apr 2024 273 bytes updated
import java.util.List;

public record Movie(String title, int year, int duration, List<String> cast) {

    public Movie {
        if (title == null || title.isEmpty()) {
            throw new IllegalArgumentException();
        }
        cast = List.copyOf(cast);
    }
}