import java.util.ArrayList; import java.util.List; public class GebietsListe { private List gebietListe = new ArrayList<>(); public GebietsListe(List gebiete){ this.gebietListe = gebietListe; } public Gebiet getGebietMinDurchschnittEinkommen(){ return null; } public Gebiet getGebietMaxEinwohner(){ return null; } public int getAnzahlGesamt(){ return 0; } public int getAnzahlUnvollstaendig(){ return 0; } public List getGebietNachNamen(String namensanfang){ return null; } }