Class FinancialMarketsStatisticsStatisticsClient
- java.lang.Object
-
- com.github.dannil.scbjavaclient.client.AbstractClient
-
- com.github.dannil.scbjavaclient.client.financialmarkets.statistics.statistics.FinancialMarketsStatisticsStatisticsClient
-
public class FinancialMarketsStatisticsStatisticsClient extends AbstractClient
Client which handles financial markets statistics statistics data fetching.
- Since:
- 0.4.0
-
-
Constructor Summary
Constructors Constructor Description FinancialMarketsStatisticsStatisticsClient()Default constructor.FinancialMarketsStatisticsStatisticsClient(Locale locale)Overloaded constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ResponseModel>getAssetsAndLiabilities()Fetch all assets and liabilities data.List<ResponseModel>getAssetsAndLiabilities(Collection<String> institutions, Collection<String> itemsAndCounterPartSectors, Collection<String> months)Fetch all assets and liabilities data which match the input constraints.List<ResponseModel>getFinancialSoundnessIndicators()Fetch all financial soundness indicators data.List<ResponseModel>getFinancialSoundnessIndicators(Collection<String> indicators, Collection<String> quarters)Fetch all financial soundness indicators data which match the input constraints.List<ResponseModel>getMoneySupply()Fetch all money supply data.List<ResponseModel>getMoneySupply(Collection<String> moneySupplies, Collection<String> months)Fetch all money supply 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
-
FinancialMarketsStatisticsStatisticsClient
public FinancialMarketsStatisticsStatisticsClient()
Default constructor.
-
FinancialMarketsStatisticsStatisticsClient
public FinancialMarketsStatisticsStatisticsClient(Locale locale)
Overloaded constructor.
- Parameters:
locale- theLocalefor this client
-
-
Method Detail
-
getAssetsAndLiabilities
public List<ResponseModel> getAssetsAndLiabilities()
Fetch all assets and liabilities data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getAssetsAndLiabilities(Collection, Collection, Collection)
-
getAssetsAndLiabilities
public List<ResponseModel> getAssetsAndLiabilities(Collection<String> institutions, Collection<String> itemsAndCounterPartSectors, Collection<String> months)
Fetch all assets and liabilities data which match the input constraints.
- Parameters:
institutions- the institutionsitemsAndCounterPartSectors- the items and counter part sectorsmonths- the months- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getFinancialSoundnessIndicators
public List<ResponseModel> getFinancialSoundnessIndicators()
Fetch all financial soundness indicators data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getFinancialSoundnessIndicators(Collection, Collection)
-
getFinancialSoundnessIndicators
public List<ResponseModel> getFinancialSoundnessIndicators(Collection<String> indicators, Collection<String> quarters)
Fetch all financial soundness indicators data which match the input constraints.
- Parameters:
indicators- the indicatorsquarters- the quarters- Returns:
- the data wrapped in a list of
ResponseModelobjects
-
getMoneySupply
public List<ResponseModel> getMoneySupply()
Fetch all money supply data.
- Returns:
- the data wrapped in a list of
ResponseModelobjects - See Also:
getMoneySupply(Collection, Collection)
-
getMoneySupply
public List<ResponseModel> getMoneySupply(Collection<String> moneySupplies, Collection<String> months)
Fetch all money supply data which match the input constraints.
- Parameters:
moneySupplies- the money suppliesmonths- the months- 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
-
-