public class Country extends Object implements Serializable
Java class for country complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="country"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="confidence" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="fipsCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="isoCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
confidence |
protected String |
fipsCode |
protected String |
isoCode |
protected String |
name |
Constructor and Description |
---|
Country() |
Modifier and Type | Method and Description |
---|---|
String |
getConfidence()
Gets the value of the confidence property.
|
String |
getFipsCode()
Gets the value of the fipsCode property.
|
String |
getIsoCode()
Gets the value of the isoCode property.
|
String |
getName()
Gets the value of the name property.
|
void |
setConfidence(String value)
Sets the value of the confidence property.
|
void |
setFipsCode(String value)
Sets the value of the fipsCode property.
|
void |
setIsoCode(String value)
Sets the value of the isoCode property.
|
void |
setName(String value)
Sets the value of the name property.
|
protected String confidence
protected String fipsCode
protected String isoCode
protected String name
public String getConfidence()
String
public void setConfidence(String value)
value
- allowed object is
String
public String getFipsCode()
String
public void setFipsCode(String value)
value
- allowed object is
String
public String getIsoCode()
String
public void setIsoCode(String value)
value
- allowed object is
String
public String getName()
String
Copyright © 2018 The Apache Software Foundation. All rights reserved.