![JAR search and dependency download from the Maven repository](/logo.png)
com.sportdataapi.data.Continent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sportdata-api-client Show documentation
Show all versions of sportdata-api-client Show documentation
A simple sportdataapi.com client.
The newest version!
package com.sportdataapi.data;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.sportdataapi.util.ContinentDeserializer;
/**
* A continent.
* @author ralph
*
*/
@JsonDeserialize(using=ContinentDeserializer.class)
public enum Continent {
AFRICA("Africa"),
ASIA("Asia"),
OCEANIA("Oceania"),
EUROPE("Europe"),
NORTH_AMERICA("North America"),
SOUTH_AMERICA("South America"),
WORLD("World");
private String apiName;
private Continent(String apiName) {
this.apiName = apiName;
}
public String getApiName() {
return apiName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy