Package fr.france
Class RepertoireCaumune
java.lang.Object
fr.france.RepertoireCaumune
public class RepertoireCaumune
extends java.lang.Object
RepertoireCaumune est la classe repertoriant toutes les caumunes de
France.
Cette classe permet de faire des recherches :
- Par nom.
- Par code postal.
- Par nom et code postal.
- Version:
- 1.0.0
- Author:
- MathieuSoysal
- See Also:
Caumune
-
Method Summary
Modifier and Type Method Description static java.util.List<Caumune>getCaumunes()static java.util.List<Caumune>rechercherParCodePostal(int codePostal)Retourne lesCaumunecorrespondantes au code postal donné en paramètre.static java.util.List<Caumune>rechercherParNom(java.lang.String nom)Retourne lesCaumunecorrespondantes au nom donné en paramètre.static CaumunerechercherParNomEtCodePostal(java.lang.String nom, int codePostal)Retourne laCaumunecorrespondante au nom et au code postal donné en paramètre.
-
Method Details
-
getCaumunes
- Returns:
- Toutes les caumunes françaises
- See Also:
Caumune
-
rechercherParCodePostal
Retourne lesCaumunecorrespondantes au code postal donné en paramètre. -
rechercherParNom
Retourne lesCaumunecorrespondantes au nom donné en paramètre. -
rechercherParNomEtCodePostal
Retourne laCaumunecorrespondante au nom et au code postal donné en paramètre.
-