GebietsListe Methoden

This commit is contained in:
Richard Reiswich 2022-12-02 15:07:08 +01:00
parent f9bc2db7bb
commit 9c6592fbff

View File

@ -1,3 +1,34 @@
public class GebietsListe { import java.util.ArrayList;
import java.util.List;
public class GebietsListe {
private List<GebietMock> gebietListe = new ArrayList<>();
public GebietsListe(){
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<Gebiet> getGebietNachNamen(String namensanfang){
return null;
}
} }