passivesEinkommen/src/GebietsListe.java

35 lines
615 B
Java
Raw Normal View History

2022-12-02 15:07:08 +01:00
import java.util.ArrayList;
import java.util.List;
2022-12-02 14:54:14 +01:00
public class GebietsListe {
2022-12-02 15:07:08 +01:00
private List<GebietMock> gebietListe = new ArrayList<>();
2022-12-06 14:45:25 +01:00
public GebietsListe(List<Gebiet> gebiete){
2022-12-02 15:07:08 +01:00
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){
2022-12-02 14:54:14 +01:00
2022-12-02 15:07:08 +01:00
return null;
}
2022-12-02 14:54:14 +01:00
}