Class Country


public class Country extends GeographicLocation

Java class for Country complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Country">
 <complexContent>
 <extension base="{http://www.ibm.com/websphere/wim}GeographicLocation">
 <sequence>
 <element ref="{http://www.ibm.com/websphere/wim}c" minOccurs="0"/>
 <element ref="{http://www.ibm.com/websphere/wim}countryName" minOccurs="0"/>
 <element ref="{http://www.ibm.com/websphere/wim}description" maxOccurs="unbounded" minOccurs="0"/>
 </sequence>
 </extension>
 </complexContent>
 </complexType>
 

The Country object extends the GeographicLocation object, and represents information related to a country. It contains several properties: c, countryName and description.

  • c: short form for the countryName property.
  • countryName: defines the name of the country.
  • description: describes this object.
  • Constructor Details

    • Country

      public Country()
  • Method Details

    • getC

      public String getC()
      Gets the value of the c property.
      Returns:
      possible object is String
    • setC

      public void setC(String value)
      Sets the value of the c property.
      Parameters:
      value - allowed object is String
    • isSetC

      public boolean isSetC()
      Returns true if the c property is set; false, otherwise.
      Returns:
      returned object is boolean
    • getCountryName

      public String getCountryName()
      Gets the value of the countryName property.
      Returns:
      possible object is String
    • setCountryName

      public void setCountryName(String value)
      Sets the value of the countryName property.
      Parameters:
      value - allowed object is String
    • isSetCountryName

      public boolean isSetCountryName()
      Returns true if the countryName property is set; false, otherwise.
      Returns:
      returned object is boolean
    • getDescription

      public List<String> getDescription()
      Gets the value of the description property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the description property.

      For example, to add a new item, do as follows:

       getDescription().add(newItem);
       

      Objects of the following type(s) are allowed in the list String

    • isSetDescription

      public boolean isSetDescription()
      Returns true if the description property is set; false, otherwise.
      Returns:
      returned object is boolean
    • unsetDescription

      public void unsetDescription()
      Resets the description property to null.
    • get

      public Object get(String propName)
      Gets the value of the requested property
      Overrides:
      get in class GeographicLocation
      Parameters:
      propName - allowed object is String
      Returns:
      returned object is Object
    • isSet

      public boolean isSet(String propName)
      Returns true if the requested property is set; false, otherwise.
      Overrides:
      isSet in class GeographicLocation
      Returns:
      returned object is boolean
    • set

      public void set(String propName, Object value)
      Sets the value of the provided property to the provided value.
      Overrides:
      set in class GeographicLocation
      Parameters:
      propName - allowed object is String
      value - allowed object is Object
    • unset

      public void unset(String propName)
      Sets the value of provided property to null.
      Overrides:
      unset in class GeographicLocation
      Parameters:
      propName - allowed object is String
    • getTypeName

      public String getTypeName()
      Gets the name of this model object, Country
      Overrides:
      getTypeName in class GeographicLocation
      Returns:
      returned object is String
    • getPropertyNames

      public static List getPropertyNames(String entityTypeName)
      Gets a list of all supported properties for this model object, Country
      Parameters:
      entityTypeName - allowed object is String
      Returns:
      returned object is List
    • getDataType

      public String getDataType(String propName)
      Gets the Java type of the value of the provided property. For example: String, List
      Overrides:
      getDataType in class GeographicLocation
      Parameters:
      propName - allowed object is String
      Returns:
      returned object is String
    • getSuperTypes

      public ArrayList getSuperTypes()
      Gets a list of any model objects which this model object, Country, is an extension of.
      Overrides:
      getSuperTypes in class GeographicLocation
      Returns:
      returned object is ArrayList
    • isSubType

      public boolean isSubType(String superTypeName)
      Returns a true if the provided model object is one that this model object extends; false, otherwise.
      Overrides:
      isSubType in class GeographicLocation
      Parameters:
      superTypeName - allowed object is String
      Returns:
      returned object is boolean
    • getSubTypes

      public static HashSet getSubTypes()
      Gets a set of any model objects which extend this model object, Country
      Returns:
      returned object is HashSet
    • toString

      public String toString()
      Description copied from class: GeographicLocation
      Returns this model object, GeographicLocation, and its contents as a String
      Overrides:
      toString in class GeographicLocation
      Returns:
      returned object is String
    • isMultiValuedProperty

      public boolean isMultiValuedProperty(String propName)
      Description copied from class: Entity
      Return whether the specified property is a multi-valued property and capable of holding multiple values.
      Overrides:
      isMultiValuedProperty in class Entity
      Parameters:
      propName - The property name to check.
      Returns:
      True if the property is multi-value, false otherwise.