Use case:

public record VetDto(Long id, String firstName, String lastName, List<Specialty> specialties) {

    public int getNrOfSpecialties() {
        return specialties.size();
    }
}

Comment From: maciejwalkowiak

Seems I am not the only one who tries to run Spring PetClinic as native image :-)