public abstract class CountryEntity
extends java.lang.Object
CountryEntity abstract class identifies the properties related to a country that will
be parsed from the JSON String returned from the server.| Modifier and Type | Method and Description |
|---|---|
abstract java.lang.String |
countryCode()
Returns a String of the country code that will allow you to call the country from another
country.
|
abstract java.lang.String |
countryName()
Returns a String of the name of the country.
|
abstract java.lang.String |
countryShortName()
Returns a String of the two letter abbreviation for a country.
|
public abstract java.lang.String countryName()
public abstract java.lang.String countryCode()
public abstract java.lang.String countryShortName()