SYMBOL INDEX (215 symbols across 23 files) FILE: src/main/java/eu/fayder/restcountries/domain/BaseCountry.java class BaseCountry (line 5) | public class BaseCountry { method getName (line 43) | public String getName() { method getTopLevelDomain (line 47) | public List getTopLevelDomain() { method getAlpha2Code (line 51) | public String getAlpha2Code() { method getAlpha3Code (line 55) | public String getAlpha3Code() { method getCallingCodes (line 59) | public List getCallingCodes() { method getCapital (line 63) | public String getCapital() { method getAltSpellings (line 67) | public List getAltSpellings() { method getRegion (line 71) | public String getRegion() { method getSubregion (line 75) | public String getSubregion() { method getPopulation (line 79) | public Integer getPopulation() { method getLatlng (line 83) | public List getLatlng() { method getDemonym (line 87) | public String getDemonym() { method getArea (line 91) | public Double getArea() { method getGini (line 95) | public Double getGini() { method getTimezones (line 99) | public List getTimezones() { method getBorders (line 103) | public List getBorders() { method getNativeName (line 107) | public String getNativeName() { method getNumericCode (line 111) | public String getNumericCode() { FILE: src/main/java/eu/fayder/restcountries/domain/ICountryRestSymbols.java type ICountryRestSymbols (line 7) | public interface ICountryRestSymbols { FILE: src/main/java/eu/fayder/restcountries/domain/ResponseEntity.java class ResponseEntity (line 6) | public class ResponseEntity { method ResponseEntity (line 11) | public ResponseEntity(int status, String message) { method getMessage (line 16) | public String getMessage() { method getStatus (line 20) | public int getStatus() { FILE: src/main/java/eu/fayder/restcountries/rest/CountryServiceBase.java class CountryServiceBase (line 19) | public class CountryServiceBase { method getByAlpha (line 23) | protected T getByAlpha(String alpha, List c... method getByCodeList (line 39) | protected List getByCodeList(String codeList, L... method getByName (line 52) | protected List getByName(String name, boolean f... method getByCallingCode (line 60) | protected List getByCallingCode(String callingC... method getByCapital (line 71) | protected List getByCapital(String capital, Lis... method getByRegion (line 81) | protected List getByRegion(String region, List<... method getBySubregion (line 91) | protected List getBySubregion(String subregion,... method fulltextSearch (line 101) | private List fulltextSearch(String name, List substringSearch(String name, List<... method normalize (line 139) | protected String normalize(String string) { method loadJson (line 144) | protected List loadJson(String filename, Class<... FILE: src/main/java/eu/fayder/restcountries/servlet/CORSFilter.java class CORSFilter (line 11) | @WebFilter(filterName = "CORSFilter", urlPatterns = "/*") method init (line 13) | @Override method doFilter (line 18) | @Override method destroy (line 27) | @Override FILE: src/main/java/eu/fayder/restcountries/servlet/NotFoundExceptionMapper.java class NotFoundExceptionMapper (line 10) | @Provider method toResponse (line 15) | @Override FILE: src/main/java/eu/fayder/restcountries/servlet/RestApplication.java class RestApplication (line 11) | @ApplicationPath("/rest") method RestApplication (line 15) | public RestApplication() { method getSingletons (line 21) | @Override FILE: src/main/java/eu/fayder/restcountries/v1/domain/Country.java class Country (line 10) | public class Country extends BaseCountry { method getCurrencies (line 17) | public List getCurrencies() { method getLanguages (line 21) | public List getLanguages() { method getTranslations (line 25) | public CountryTranslations getTranslations() { method getRelevance (line 29) | public String getRelevance() { FILE: src/main/java/eu/fayder/restcountries/v1/domain/CountryTranslations.java class CountryTranslations (line 6) | public class CountryTranslations { method getDe (line 14) | public String getDe() { method setDe (line 17) | public void setDe(String de) { method getEs (line 20) | public String getEs() { method setEs (line 23) | public void setEs(String es) { method getFr (line 26) | public String getFr() { method setFr (line 29) | public void setFr(String fr) { method getJa (line 32) | public String getJa() { method setJa (line 35) | public void setJa(String ja) { method getIt (line 38) | public String getIt() { method setIt (line 41) | public void setIt(String it) { FILE: src/main/java/eu/fayder/restcountries/v1/rest/CountryRest.java class CountryRest (line 25) | @Provider method getAllCountries (line 32) | @GET method getCountries (line 38) | @GET method getByAlpha (line 44) | @GET method getByAlphaList (line 58) | @GET method getByCurrency (line 77) | @GET method getByName (line 96) | @GET method getByCallingCode (line 112) | @GET method getByCapital (line 128) | @GET method getByRegion (line 144) | @GET method getBySubregion (line 160) | @GET method getByLanguage (line 176) | @GET method doPOST (line 192) | @POST method getResponse (line 198) | private Response getResponse(Status status) { method isEmpty (line 206) | private boolean isEmpty(String value) { FILE: src/main/java/eu/fayder/restcountries/v1/rest/CountryService.java class CountryService (line 13) | public class CountryService extends CountryServiceBase { method CountryService (line 19) | private CountryService() { class InstanceHolder (line 23) | private static class InstanceHolder { method getInstance (line 27) | public static CountryService getInstance() { method getAll (line 31) | public List getAll() { method getByAlpha (line 35) | public Country getByAlpha(String alpha) { method getByCodeList (line 39) | @SuppressWarnings("unchecked") method getByName (line 44) | @SuppressWarnings("unchecked") method getByCallingCode (line 50) | @SuppressWarnings("unchecked") method getByCapital (line 55) | @SuppressWarnings("unchecked") method getByRegion (line 60) | @SuppressWarnings("unchecked") method getBySubregion (line 65) | @SuppressWarnings("unchecked") method getByCurrency (line 70) | public List getByCurrency(String currency) { method getByLanguage (line 82) | public List getByLanguage(String language) { method initialize (line 94) | @SuppressWarnings("unchecked") FILE: src/main/java/eu/fayder/restcountries/v2/domain/Contribution.java class Contribution (line 6) | public class Contribution { method getAmount (line 11) | public int getAmount() { method getToken (line 15) | public String getToken() { method toString (line 19) | @Override FILE: src/main/java/eu/fayder/restcountries/v2/domain/Country.java class Country (line 10) | public class Country extends BaseCountry { method getCurrencies (line 19) | public List getCurrencies() { method getLanguages (line 23) | public List getLanguages() { method getTranslations (line 27) | public Translations getTranslations() { method getFlag (line 31) | public String getFlag() { method getRegionalBlocs (line 35) | public List getRegionalBlocs() { method getCioc (line 39) | public String getCioc() { FILE: src/main/java/eu/fayder/restcountries/v2/domain/Currency.java class Currency (line 6) | public class Currency { method getCode (line 12) | public String getCode() { method setCode (line 16) | public void setCode(String code) { method getName (line 20) | public String getName() { method setName (line 24) | public void setName(String name) { method getSymbol (line 28) | public String getSymbol() { method setSymbol (line 32) | public void setSymbol(String symbol) { FILE: src/main/java/eu/fayder/restcountries/v2/domain/Language.java class Language (line 6) | public class Language { method getIso639_1 (line 13) | public String getIso639_1() { method setIso639_1 (line 17) | public void setIso639_1(String code) { method getIso639_2 (line 21) | public String getIso639_2() { method setIso639_2 (line 25) | public void setIso639_2(String iso639_2) { method getName (line 29) | public String getName() { method setName (line 33) | public void setName(String name) { method getNativeName (line 37) | public String getNativeName() { method setNativeName (line 41) | public void setNativeName(String nativeName) { FILE: src/main/java/eu/fayder/restcountries/v2/domain/RegionalBloc.java class RegionalBloc (line 9) | public class RegionalBloc { method getAcronym (line 16) | public String getAcronym() { method getName (line 20) | public String getName() { method getOtherAcronyms (line 24) | public List getOtherAcronyms() { method getOtherNames (line 31) | public List getOtherNames() { FILE: src/main/java/eu/fayder/restcountries/v2/domain/Translations.java class Translations (line 8) | public class Translations extends CountryTranslations { method getBr (line 16) | public String getBr() { method getPt (line 20) | public String getPt() { method getNl (line 24) | public String getNl() { method getHr (line 28) | public String getHr() { method getFa (line 32) | public String getFa() { FILE: src/main/java/eu/fayder/restcountries/v2/rest/CountryRest.java class CountryRest (line 20) | @Provider method getAllCountries (line 27) | @GET method getCountries (line 33) | @GET method getByAlpha (line 40) | @GET method getByAlphaList (line 54) | @GET method getByCurrency (line 73) | @GET method getByName (line 92) | @GET method getByCallingCode (line 108) | @GET method getByCapital (line 124) | @GET method getByRegion (line 140) | @GET method getBySubRegion (line 156) | @GET method getByLanguage (line 172) | @GET method getByDemonym (line 188) | @GET method getByRegionalBloc (line 204) | @GET method doPOST (line 220) | @POST method getResponse (line 226) | private Response getResponse(Response.Status status) { method parsedCountry (line 234) | private Object parsedCountry(Country country, String fields) { method parsedCountries (line 242) | private Object parsedCountries(List countries, String exclude... method getCountryJson (line 250) | private String getCountryJson(Country country, List fields) { method getCountriesJson (line 262) | private String getCountriesJson(List countries, List ... method getExcludedFields (line 279) | private List getExcludedFields(List fields) { method isEmpty (line 312) | private boolean isEmpty(String value) { FILE: src/main/java/eu/fayder/restcountries/v2/rest/CountryService.java class CountryService (line 16) | public class CountryService extends CountryServiceBase { method CountryService (line 22) | private CountryService() { class InstanceHolder (line 26) | private static class InstanceHolder { method getInstance (line 30) | public static CountryService getInstance() { method getAll (line 34) | public List getAll() { method getByAlpha (line 38) | public Country getByAlpha(String alpha) { method getByCodeList (line 42) | @SuppressWarnings("unchecked") method getByName (line 47) | @SuppressWarnings("unchecked") method getByCallingCode (line 52) | @SuppressWarnings("unchecked") method getByCapital (line 57) | @SuppressWarnings("unchecked") method getByRegion (line 62) | @SuppressWarnings("unchecked") method getBySubRegion (line 67) | @SuppressWarnings("unchecked") method getByCurrency (line 72) | public List getByCurrency(String currency) { method getByLanguage (line 84) | public List getByLanguage(String language) { method getByDemonym (line 106) | public List getByDemonym(String demonym) { method getByRegionalBloc (line 116) | public List getByRegionalBloc(String regionalBloc) { method initialize (line 129) | @SuppressWarnings("unchecked") FILE: src/main/java/eu/fayder/restcountries/v2/rest/StripeRest.java class StripeRest (line 23) | @Provider method contribute (line 30) | @POST method getResponse (line 55) | private Response getResponse(Response.Status status) { FILE: src/test/java/eu/fayder/restcountries/EmptyDataTest.java class EmptyDataTest (line 18) | public class EmptyDataTest { method before (line 22) | @Before method emptyBorders (line 38) | @Test method emptyAreas (line 48) | @Test method emptyGini (line 58) | @Test method emptyNumericCode (line 68) | @Test method emptyPopulation (line 78) | @Test method emptyRegion (line 88) | @Test method emptyTimezones (line 98) | @Test FILE: src/test/java/eu/fayder/restcountries/v1/CountryServiceTest.java class CountryServiceTest (line 14) | public class CountryServiceTest { method singletonTest (line 16) | @Test method getAll (line 28) | @Test method getByAlpha2 (line 36) | @Test method getByAlpha3 (line 43) | @Test method getByCodeList (line 50) | @Test method getByCurrency (line 62) | @Test method getByName (line 72) | @Test method getByNamePriority (line 80) | @Test method getByNameAlt (line 93) | @Test method getByNameFullText (line 101) | @Test method getByNameFullTextNotFound (line 109) | @Test method getByCallingCode (line 116) | @Test method getByCapital (line 125) | @Test method getByRegion (line 135) | @Test method getBySubregion (line 145) | @Test method getByLanguageCode (line 155) | @Test FILE: src/test/java/eu/fayder/restcountries/v2/CountryServiceTest.java class CountryServiceTest (line 10) | public class CountryServiceTest { method getAll (line 12) | @Test method getByAlpha2 (line 19) | @Test method getByAlpha3 (line 26) | @Test method getByCodeList (line 33) | @Test method getByCurrency (line 45) | @Test method getByName (line 57) | @Test method getByNamePriority (line 65) | @Test method getByNameAlt (line 78) | @Test method getByNameFullText (line 86) | @Test method getByNameFullTextNotFound (line 94) | @Test method getByCallingCode (line 101) | @Test method getByCapital (line 110) | @Test method getByRegion (line 120) | @Test method getByLanguageCode (line 130) | @Test method getByDemonym (line 145) | @Test method getByRegionalBloc (line 155) | @Test method translations (line 170) | @Test