Class EnvironmentLocalitiesAreasAndPopulationPopulationClient
- java.lang.Object
-
- com.github.dannil.scbjavaclient.client.AbstractClient
-
- com.github.dannil.scbjavaclient.client.environment.localitiesareasandpopulation.population.EnvironmentLocalitiesAreasAndPopulationPopulationClient
-
public class EnvironmentLocalitiesAreasAndPopulationPopulationClient extends AbstractClient
Client which handles environment localities areas and population population data fetching.
- Since:
- 0.7.0
-
-
Constructor Summary
Constructors Constructor Description EnvironmentLocalitiesAreasAndPopulationPopulationClient()Default constructor.EnvironmentLocalitiesAreasAndPopulationPopulationClient(Locale locale)Overloaded constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ResponseModel>getNumberOfLocalitiesAndPopulationDensity()Fetch all number of localities and population density data.List<ResponseModel>getNumberOfLocalitiesAndPopulationDensity(Collection<String> regions, Collection<Integer> years)Fetch all number of localities and population density data which match the input constraints.List<ResponseModel>getPopulationAndLandAreaWithinAndOutsideOfLocalities()Fetch all population and land area within and outside of localities data.List<ResponseModel>getPopulationAndLandAreaWithinAndOutsideOfLocalities(Collection<String> regions, Collection<String> typesOfAreas, Collection<Integer> years)Fetch all population and land area within and outside of localities data which match the input constraints.List<ResponseModel>getPopulationAndLandAreaWithinLocalities()Fetch all population and land area within localities data.List<ResponseModel>getPopulationAndLandAreaWithinLocalities(Collection<String> regions, Collection<Integer> years)Fetch all population and land area within localities data which match the input constraints.URLEndpointgetUrl()Returns the URL endpoint which this client represents.-
Methods inherited from class com.github.dannil.scbjavaclient.client.AbstractClient
doGetRequest, doPostRequest, getCommunicationProtocol, getLocale, getLocalizationLocale, getResponseModels, getResponseModels, getRootUrl, setCommunicationProtocol, setLocale, setLocalizationLocale
-
-
-
-
Constructor Detail
-
EnvironmentLocalitiesAreasAndPopulationPopulationClient
public EnvironmentLocalitiesAreasAndPopulationPopulationClient()
Default constructor.
-
EnvironmentLocalitiesAreasAndPopulationPopulationClient
public EnvironmentLocalitiesAreasAndPopulationPopulationClient(Locale locale)
Overloaded constructor.
- Parameters:
locale- theLocalefor this client
-
-
Method Detail
-
getPopulationAndLandAreaWithinLocalities
public List<ResponseModel> getPopulationAndLandAreaWithinLocalities()
Fetch all population and land area within localities data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getPopulationAndLandAreaWithinLocalities(Collection, Collection)
-
getPopulationAndLandAreaWithinLocalities
public List<ResponseModel> getPopulationAndLandAreaWithinLocalities(Collection<String> regions, Collection<Integer> years)
Fetch all population and land area within localities data which match the input constraints.
- Parameters:
regions- the regions to fetch data foryears- the years to fetch data for- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getPopulationAndLandAreaWithinAndOutsideOfLocalities
public List<ResponseModel> getPopulationAndLandAreaWithinAndOutsideOfLocalities()
Fetch all population and land area within and outside of localities data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getPopulationAndLandAreaWithinAndOutsideOfLocalities(Collection, Collection, Collection)
-
getPopulationAndLandAreaWithinAndOutsideOfLocalities
public List<ResponseModel> getPopulationAndLandAreaWithinAndOutsideOfLocalities(Collection<String> regions, Collection<String> typesOfAreas, Collection<Integer> years)
Fetch all population and land area within and outside of localities data which match the input constraints.
- Parameters:
regions- the regions to fetch data fortypesOfAreas- the types of areas to fetch data foryears- the years to fetch data for- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getNumberOfLocalitiesAndPopulationDensity
public List<ResponseModel> getNumberOfLocalitiesAndPopulationDensity()
Fetch all number of localities and population density data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getNumberOfLocalitiesAndPopulationDensity(Collection, Collection)
-
getNumberOfLocalitiesAndPopulationDensity
public List<ResponseModel> getNumberOfLocalitiesAndPopulationDensity(Collection<String> regions, Collection<Integer> years)
Fetch all number of localities and population density data which match the input constraints.
- Parameters:
regions- the regions to fetch data foryears- the years to fetch data for- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getUrl
public URLEndpoint getUrl()
Description copied from class:AbstractClientReturns the URL endpoint which this client represents.
- Specified by:
getUrlin classAbstractClient- Returns:
- the URL endpoint for this client
-
-