GebietsListe fertiggestellt
This commit is contained in:
parent
8f0a176d97
commit
7cc604fad9
@ -1,5 +1,6 @@
|
|||||||
|
|
||||||
import java.util.List;
|
import java.sql.Array;
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
public class GebietsListe {
|
public class GebietsListe {
|
||||||
private List<Gebiet> gebiete;
|
private List<Gebiet> gebiete;
|
||||||
@ -8,7 +9,6 @@ public class GebietsListe {
|
|||||||
this.gebiete = gebiete;
|
this.gebiete = gebiete;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public Gebiet getGebietMinDurchschnittsEinkommen(){
|
public Gebiet getGebietMinDurchschnittsEinkommen(){
|
||||||
int gebietA = 0;
|
int gebietA = 0;
|
||||||
int gebietB = 0;
|
int gebietB = 0;
|
||||||
@ -26,8 +26,6 @@ public class GebietsListe {
|
|||||||
return gebietMitMinDurchschnittsEinkommen;
|
return gebietMitMinDurchschnittsEinkommen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public Gebiet getGebietMaxAnzahlEinwohner() {
|
public Gebiet getGebietMaxAnzahlEinwohner() {
|
||||||
int gebietA = 0;
|
int gebietA = 0;
|
||||||
int gebietB = 0;
|
int gebietB = 0;
|
||||||
@ -46,4 +44,29 @@ public class GebietsListe {
|
|||||||
}
|
}
|
||||||
return gebietMitMaxEinwohnern;
|
return gebietMitMaxEinwohnern;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getAnzahlGesamt()
|
||||||
|
{
|
||||||
|
return gebiete.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getAnzahlUnvollstaendig(){
|
||||||
|
int zaehler = 0;
|
||||||
|
for (Gebiet g:gebiete) {
|
||||||
|
if (g.getJahr() <= 0 || g.getSchlüssel() <= 0 || g.getName() == null || g.getGesamtEinkommen() <= 0 || g.getDurchschnittsEinkommen() <= 0) {
|
||||||
|
zaehler++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return zaehler;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Gebiet> getGebieteNachNamen(String namensanfang) {
|
||||||
|
List<Gebiet> gebiete = new ArrayList<Gebiet>();
|
||||||
|
for (Gebiet g:gebiete) {
|
||||||
|
if (g.getName().contains(namensanfang)){
|
||||||
|
gebiete.add(g);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return gebiete;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user