Class CountryIsoCodes
- java.lang.Object
-
- com.ellucian.generated.eedm.country_iso_codes.v1_0_0.CountryIsoCodes
-
@Generated("jsonschema2pojo") public class CountryIsoCodes extends Object
Country ISO CodesThe valid list of ISO 3166 country codes.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CountryIsoCodes.Status
Status
-
Constructor Summary
Constructors Constructor Description CountryIsoCodes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
String
getId()
IDString
getIsoCode()
ISO CodeMetadata
getMetadata()
MetadataCountryIsoCodes.Status
getStatus()
StatusString
getTitle()
Titleint
hashCode()
void
setId(String id)
IDvoid
setIsoCode(String isoCode)
ISO Codevoid
setMetadata(Metadata metadata)
Metadatavoid
setStatus(CountryIsoCodes.Status status)
Statusvoid
setTitle(String title)
TitleString
toString()
CountryIsoCodes
withId(String id)
CountryIsoCodes
withIsoCode(String isoCode)
CountryIsoCodes
withMetadata(Metadata metadata)
CountryIsoCodes
withStatus(CountryIsoCodes.Status status)
CountryIsoCodes
withTitle(String title)
-
-
-
Field Detail
-
metadata
@JsonPropertyDescription("Metadata about the JSON payload") private Metadata metadata
MetadataMetadata about the JSON payload
-
id
@JsonPropertyDescription("The global identifier of the country ISO code.") private String id
IDThe global identifier of the country ISO code. (Required)
-
title
@JsonPropertyDescription("The full name of the country represented by the ISO code.") private String title
TitleThe full name of the country represented by the ISO code. (Required)
-
isoCode
@JsonPropertyDescription("The 3-character ISO 3166-1 code associated with the country.") private String isoCode
ISO CodeThe 3-character ISO 3166-1 code associated with the country. (Required)
-
status
@JsonPropertyDescription("An indicator as to whether the ISO code is currently in use or was previously used to represent a country.") private CountryIsoCodes.Status status
StatusAn indicator as to whether the ISO code is currently in use or was previously used to represent a country. (Required)
-
-
Method Detail
-
getMetadata
public Metadata getMetadata()
MetadataMetadata about the JSON payload
-
setMetadata
public void setMetadata(Metadata metadata)
MetadataMetadata about the JSON payload
-
withMetadata
public CountryIsoCodes withMetadata(Metadata metadata)
-
getId
public String getId()
IDThe global identifier of the country ISO code. (Required)
-
setId
public void setId(String id)
IDThe global identifier of the country ISO code. (Required)
-
withId
public CountryIsoCodes withId(String id)
-
getTitle
public String getTitle()
TitleThe full name of the country represented by the ISO code. (Required)
-
setTitle
public void setTitle(String title)
TitleThe full name of the country represented by the ISO code. (Required)
-
withTitle
public CountryIsoCodes withTitle(String title)
-
getIsoCode
public String getIsoCode()
ISO CodeThe 3-character ISO 3166-1 code associated with the country. (Required)
-
setIsoCode
public void setIsoCode(String isoCode)
ISO CodeThe 3-character ISO 3166-1 code associated with the country. (Required)
-
withIsoCode
public CountryIsoCodes withIsoCode(String isoCode)
-
getStatus
public CountryIsoCodes.Status getStatus()
StatusAn indicator as to whether the ISO code is currently in use or was previously used to represent a country. (Required)
-
setStatus
public void setStatus(CountryIsoCodes.Status status)
StatusAn indicator as to whether the ISO code is currently in use or was previously used to represent a country. (Required)
-
withStatus
public CountryIsoCodes withStatus(CountryIsoCodes.Status status)
-
-