Hi there ! Is there any java (>5) enum for listing european countries and languages somewhere ? If there aren't any, I'll probably write them from this list : http://www.nationsonline.org/oneworld/european_languages.htm
But if I could avoid that burden, that would be great !
Thanks in advance !
Philippe
P.S. : Finally, I'm starting to use the geoNames webservice at geonames.org. For the countries I use this snippet in Groovy :
import org.geonames.*
ToponymSearchCriteria sc = new ToponymSearchCriteria()
sc.setContinentCode("eu")
sc.setFeatureCode("PCLI")
def res = WebService.search(sc)
def countries = res.getToponyms().collect{it.countryName}.sort()