Package org.worldbank.api.services

Examples of org.worldbank.api.services.WorldBankQueryFactory


     * @param args the arguments
     *
     * @throws Exception the exception
     */
  public static void main(String[] args) throws Exception {
    WorldBankQueryFactory factory = WorldBankQueryFactory.newInstance();
    CountryQuery service = factory.createCountryQuery();
    List<Country> countries = service.list();
    for (Country country : countries) {
      printResult(country);
    }
  }
View Full Code Here


     * @param args the arguments
     *
     * @throws Exception the exception
     */
  public static void main(String[] args) throws Exception {
    WorldBankQueryFactory factory = WorldBankQueryFactory.newInstance();
    SourceQuery service = factory.createSourceQuery();
    List<Source> sources = service.list();
    for (Source source : sources) {
      printResult(source);
    }
  }
View Full Code Here

     * @param args the arguments
     *
     * @throws Exception the exception
     */
  public static void main(String[] args) throws Exception {
    WorldBankQueryFactory factory = WorldBankQueryFactory.newInstance();
    IncomeLevelQuery service = factory.createIncomeLevelQuery();
    List<IncomeLevel> incomeLevels = service.list();
    for (IncomeLevel incomeLevel : incomeLevels) {
      printResult(incomeLevel);
    }
  }
View Full Code Here

     * @param args the arguments
     *
     * @throws Exception the exception
     */
  public static void main(String[] args) throws Exception {
    WorldBankQueryFactory factory = WorldBankQueryFactory.newInstance();
    TopicQuery service = factory.createTopicQuery();
    List<Topic> topics = service.list();
    for (Topic topic : topics) {
      printResult(topic);
    }
  }
View Full Code Here

     * @param args the arguments
     *
     * @throws Exception the exception
     */
  public static void main(String[] args) throws Exception {
    WorldBankQueryFactory factory = WorldBankQueryFactory.newInstance();
    IndicatorQuery service = factory.createIndicatorQuery();
    List<Indicator> indicators = service.list();
    for (Indicator indicator : indicators) {
      printResult(indicator);
    }
  }
View Full Code Here

     * @param args the arguments
     *
     * @throws Exception the exception
     */
  public static void main(String[] args) throws Exception {
    WorldBankQueryFactory factory = WorldBankQueryFactory.newInstance();
    LendingTypeQuery service = factory.createLendingTypeQuery();
    List<LendingType> lendingTypes = service.list();
    for (LendingType lendingType : lendingTypes) {
      printResult(lendingType);
    }
  }
View Full Code Here

TOP

Related Classes of org.worldbank.api.services.WorldBankQueryFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.