Class EnvironmentSEEAGoodsAndServicesSectorClient
- java.lang.Object
-
- com.github.dannil.scbjavaclient.client.AbstractClient
-
- com.github.dannil.scbjavaclient.client.environment.seea.goodsandservicessector.EnvironmentSEEAGoodsAndServicesSectorClient
-
public class EnvironmentSEEAGoodsAndServicesSectorClient extends AbstractClient
Client which handles environment System of Environmental-Economic Accounting (SEEA) goods and services sector data fetching.
- Since:
- 0.4.0
-
-
Constructor Summary
Constructors Constructor Description EnvironmentSEEAGoodsAndServicesSectorClient()Default constructor.EnvironmentSEEAGoodsAndServicesSectorClient(Locale locale)Overloaded constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ResponseModel>getEnvironmentalSectorByCounty()Fetch all environmental sector by county data.List<ResponseModel>getEnvironmentalSectorByCounty(Collection<String> counties, Collection<Integer> years)Fetch all environmental sector by county data which match the input constraints.List<ResponseModel>getEnvironmentalSectorByEnvironmentalArea()Fetch all environmental sector by environmental area data.List<ResponseModel>getEnvironmentalSectorByEnvironmentalArea(Collection<Integer> environmentalAreas, Collection<Integer> years)Fetch all environmental sector by environmental area data which match the input constraints.List<ResponseModel>getEnvironmentalSectorExportByIndustrialClassification()Fetch all environmental sector export by industrial classification data.List<ResponseModel>getEnvironmentalSectorExportByIndustrialClassification(Collection<String> industrialClassifications, Collection<Integer> years)Fetch all environmental sector export by industrial classification data which match the input constraints.List<ResponseModel>getEnvironmentalSectorNetTurnoverByIndustrialClassification()Fetch all environmental sector net turnover by industrial classification data.List<ResponseModel>getEnvironmentalSectorNetTurnoverByIndustrialClassification(Collection<String> industrialClassifications, Collection<Integer> years)Fetch all environmental sector net turnover by industrial classification data which match the input constraints.List<ResponseModel>getEnvironmentalSectorValueAddedByIndustrialClassification()Fetch all environmental sector value added by industrial classification data.List<ResponseModel>getEnvironmentalSectorValueAddedByIndustrialClassification(Collection<String> industrialClassifications, Collection<Integer> years)Fetch all environmental sector value added by industrial classification 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
-
EnvironmentSEEAGoodsAndServicesSectorClient
public EnvironmentSEEAGoodsAndServicesSectorClient()
Default constructor.
-
EnvironmentSEEAGoodsAndServicesSectorClient
public EnvironmentSEEAGoodsAndServicesSectorClient(Locale locale)
Overloaded constructor.
- Parameters:
locale- theLocalefor this client
-
-
Method Detail
-
getEnvironmentalSectorByEnvironmentalArea
public List<ResponseModel> getEnvironmentalSectorByEnvironmentalArea()
Fetch all environmental sector by environmental area data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getEnvironmentalSectorByEnvironmentalArea(Collection, Collection)
-
getEnvironmentalSectorByEnvironmentalArea
public List<ResponseModel> getEnvironmentalSectorByEnvironmentalArea(Collection<Integer> environmentalAreas, Collection<Integer> years)
Fetch all environmental sector by environmental area data which match the input constraints.
- Parameters:
environmentalAreas- the environmental areasyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getEnvironmentalSectorByCounty
public List<ResponseModel> getEnvironmentalSectorByCounty()
Fetch all environmental sector by county data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getEnvironmentalSectorByCounty(Collection, Collection)
-
getEnvironmentalSectorByCounty
public List<ResponseModel> getEnvironmentalSectorByCounty(Collection<String> counties, Collection<Integer> years)
Fetch all environmental sector by county data which match the input constraints.
- Parameters:
counties- the countiesyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getEnvironmentalSectorNetTurnoverByIndustrialClassification
public List<ResponseModel> getEnvironmentalSectorNetTurnoverByIndustrialClassification()
Fetch all environmental sector net turnover by industrial classification data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getEnvironmentalSectorNetTurnoverByIndustrialClassification(Collection, Collection)
-
getEnvironmentalSectorNetTurnoverByIndustrialClassification
public List<ResponseModel> getEnvironmentalSectorNetTurnoverByIndustrialClassification(Collection<String> industrialClassifications, Collection<Integer> years)
Fetch all environmental sector net turnover by industrial classification data which match the input constraints.
- Parameters:
industrialClassifications- the industrial classificationsyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getEnvironmentalSectorValueAddedByIndustrialClassification
public List<ResponseModel> getEnvironmentalSectorValueAddedByIndustrialClassification()
Fetch all environmental sector value added by industrial classification data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getEnvironmentalSectorValueAddedByIndustrialClassification(Collection, Collection)
-
getEnvironmentalSectorValueAddedByIndustrialClassification
public List<ResponseModel> getEnvironmentalSectorValueAddedByIndustrialClassification(Collection<String> industrialClassifications, Collection<Integer> years)
Fetch all environmental sector value added by industrial classification data which match the input constraints.
- Parameters:
industrialClassifications- the industrial classificationsyears- the years- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getEnvironmentalSectorExportByIndustrialClassification
public List<ResponseModel> getEnvironmentalSectorExportByIndustrialClassification()
Fetch all environmental sector export by industrial classification data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getEnvironmentalSectorExportByIndustrialClassification(Collection, Collection)
-
getEnvironmentalSectorExportByIndustrialClassification
public List<ResponseModel> getEnvironmentalSectorExportByIndustrialClassification(Collection<String> industrialClassifications, Collection<Integer> years)
Fetch all environmental sector export by industrial classification data which match the input constraints.
- Parameters:
industrialClassifications- the industrial classificationsyears- 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
-
-