Class EnvironmentShorelineLandUseLandUseClient
- java.lang.Object
-
- com.github.dannil.scbjavaclient.client.AbstractClient
-
- com.github.dannil.scbjavaclient.client.environment.shorelinelanduse.landuse.EnvironmentShorelineLandUseLandUseClient
-
public class EnvironmentShorelineLandUseLandUseClient extends AbstractClient
Client which handles environment shoreline land use land use data fetching.
- Since:
- 2.1.0
-
-
Constructor Summary
Constructors Constructor Description EnvironmentShorelineLandUseLandUseClient()Default constructor.EnvironmentShorelineLandUseLandUseClient(Locale locale)Overloaded constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ResponseModel>getBuildingsOnIslands()Fetch all buildings on islands data.List<ResponseModel>getBuildingsOnIslands(Collection<String> regions, Collection<Integer> years)Fetch all buildings on islands data which match the input constraints.List<ResponseModel>getIslandsInSweden()Fetch all islands in Sweden data.List<ResponseModel>getIslandsInSweden(Collection<String> regions, Collection<Integer> years)Fetch all islands in Sweden data which match the input constraints.List<ResponseModel>getIslandsInSwedenByNumberAreaAndPerimiter()Fetch all islands in Sweden by number, area and perimeter data.List<ResponseModel>getIslandsInSwedenByNumberAreaAndPerimiter(Collection<String> regions, Collection<Integer> years)Fetch all islands in Sweden by number, area and perimeter data which match the input constraints.List<ResponseModel>getNumberOfIslandsInSweden()Fetch all number of islands in Sweden data.List<ResponseModel>getNumberOfIslandsInSweden(Collection<String> regions, Collection<String> sizeClasses, Collection<Integer> years)Fetch all number of islands in Sweden data which match the input constraints.List<ResponseModel>getPopulatedIslands()Fetch all populated islands data.List<ResponseModel>getPopulatedIslands(Collection<String> regions, Collection<Integer> years)Fetch all populated islands data which match the input constraints.List<ResponseModel>getShorelinePopulation()Fetch all shoreline population data.List<ResponseModel>getShorelinePopulation(Collection<String> regions, Collection<String> livings, Collection<Integer> years)Fetch all shoreline population 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
-
EnvironmentShorelineLandUseLandUseClient
public EnvironmentShorelineLandUseLandUseClient()
Default constructor.
-
EnvironmentShorelineLandUseLandUseClient
public EnvironmentShorelineLandUseLandUseClient(Locale locale)
Overloaded constructor.
- Parameters:
locale- theLocalefor this client
-
-
Method Detail
-
getShorelinePopulation
public List<ResponseModel> getShorelinePopulation()
Fetch all shoreline population data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getShorelinePopulation(Collection, Collection, Collection)
-
getShorelinePopulation
public List<ResponseModel> getShorelinePopulation(Collection<String> regions, Collection<String> livings, Collection<Integer> years)
Fetch all shoreline population data which match the input constraints.
- Parameters:
regions- the regionslivings- the livingsyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getPopulatedIslands
public List<ResponseModel> getPopulatedIslands()
Fetch all populated islands data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getPopulatedIslands(Collection, Collection)
-
getPopulatedIslands
public List<ResponseModel> getPopulatedIslands(Collection<String> regions, Collection<Integer> years)
Fetch all populated islands data which match the input constraints.
- Parameters:
regions- the regionsyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getIslandsInSweden
public List<ResponseModel> getIslandsInSweden()
Fetch all islands in Sweden data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getIslandsInSweden(Collection, Collection)
-
getIslandsInSweden
public List<ResponseModel> getIslandsInSweden(Collection<String> regions, Collection<Integer> years)
Fetch all islands in Sweden data which match the input constraints.
- Parameters:
regions- the regionsyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getBuildingsOnIslands
public List<ResponseModel> getBuildingsOnIslands()
Fetch all buildings on islands data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getBuildingsOnIslands(Collection, Collection)
-
getBuildingsOnIslands
public List<ResponseModel> getBuildingsOnIslands(Collection<String> regions, Collection<Integer> years)
Fetch all buildings on islands data which match the input constraints.
- Parameters:
regions- the regionsyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getIslandsInSwedenByNumberAreaAndPerimiter
public List<ResponseModel> getIslandsInSwedenByNumberAreaAndPerimiter()
Fetch all islands in Sweden by number, area and perimeter data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getIslandsInSwedenByNumberAreaAndPerimiter(Collection, Collection)
-
getIslandsInSwedenByNumberAreaAndPerimiter
public List<ResponseModel> getIslandsInSwedenByNumberAreaAndPerimiter(Collection<String> regions, Collection<Integer> years)
Fetch all islands in Sweden by number, area and perimeter data which match the input constraints.
- Parameters:
regions- the regionsyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getNumberOfIslandsInSweden
public List<ResponseModel> getNumberOfIslandsInSweden()
Fetch all number of islands in Sweden data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getNumberOfIslandsInSweden(Collection, Collection, Collection)
-
getNumberOfIslandsInSweden
public List<ResponseModel> getNumberOfIslandsInSweden(Collection<String> regions, Collection<String> sizeClasses, Collection<Integer> years)
Fetch all number of islands in Sweden data which match the input constraints.
- Parameters:
regions- the regionssizeClasses- the size classesyears- the years- 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
-
-