*
* @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);
}
}