Interface ContactInfoDocument.ContactInfo.Address

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static org.apache.xmlbeans.SchemaType type  
      • Fields inherited from interface org.apache.xmlbeans.XmlObject

        EQUAL, GREATER_THAN, LESS_THAN, NOT_EQUAL
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void addDeliveryPoint​(String deliveryPoint)
      Appends the value as the last "deliveryPoint" element
      org.apache.xmlbeans.XmlString addNewDeliveryPoint()
      Appends and returns a new empty value (as xml) as the last "deliveryPoint" element
      String getAdministrativeArea()
      Gets the "administrativeArea" element
      String getCity()
      Gets the "city" element
      String getCountry()
      Gets the "country" element
      String[] getDeliveryPointArray()
      Gets array of all "deliveryPoint" elements
      String getDeliveryPointArray​(int i)
      Gets ith "deliveryPoint" element
      String getElectronicMailAddress()
      Gets the "electronicMailAddress" element
      String getPostalCode()
      Gets the "postalCode" element
      void insertDeliveryPoint​(int i, String deliveryPoint)
      Inserts the value as the ith "deliveryPoint" element
      org.apache.xmlbeans.XmlString insertNewDeliveryPoint​(int i)
      Inserts and returns a new empty value (as xml) as the ith "deliveryPoint" element
      boolean isSetAdministrativeArea()
      True if has "administrativeArea" element
      boolean isSetCity()
      True if has "city" element
      boolean isSetCountry()
      True if has "country" element
      boolean isSetElectronicMailAddress()
      True if has "electronicMailAddress" element
      boolean isSetPostalCode()
      True if has "postalCode" element
      void removeDeliveryPoint​(int i)
      Removes the ith "deliveryPoint" element
      void setAdministrativeArea​(String administrativeArea)
      Sets the "administrativeArea" element
      void setCity​(String city)
      Sets the "city" element
      void setCountry​(String country)
      Sets the "country" element
      void setDeliveryPointArray​(int i, String deliveryPoint)
      Sets ith "deliveryPoint" element
      void setDeliveryPointArray​(String[] deliveryPointArray)
      Sets array of all "deliveryPoint" element
      void setElectronicMailAddress​(String electronicMailAddress)
      Sets the "electronicMailAddress" element
      void setPostalCode​(String postalCode)
      Sets the "postalCode" element
      int sizeOfDeliveryPointArray()
      Returns number of "deliveryPoint" element
      void unsetAdministrativeArea()
      Unsets the "administrativeArea" element
      void unsetCity()
      Unsets the "city" element
      void unsetCountry()
      Unsets the "country" element
      void unsetElectronicMailAddress()
      Unsets the "electronicMailAddress" element
      void unsetPostalCode()
      Unsets the "postalCode" element
      org.apache.xmlbeans.XmlString xgetAdministrativeArea()
      Gets (as xml) the "administrativeArea" element
      org.apache.xmlbeans.XmlString xgetCity()
      Gets (as xml) the "city" element
      org.apache.xmlbeans.XmlString xgetCountry()
      Gets (as xml) the "country" element
      org.apache.xmlbeans.XmlString[] xgetDeliveryPointArray()
      Gets (as xml) array of all "deliveryPoint" elements
      org.apache.xmlbeans.XmlString xgetDeliveryPointArray​(int i)
      Gets (as xml) ith "deliveryPoint" element
      org.apache.xmlbeans.XmlString xgetElectronicMailAddress()
      Gets (as xml) the "electronicMailAddress" element
      org.apache.xmlbeans.XmlString xgetPostalCode()
      Gets (as xml) the "postalCode" element
      void xsetAdministrativeArea​(org.apache.xmlbeans.XmlString administrativeArea)
      Sets (as xml) the "administrativeArea" element
      void xsetCity​(org.apache.xmlbeans.XmlString city)
      Sets (as xml) the "city" element
      void xsetCountry​(org.apache.xmlbeans.XmlString country)
      Sets (as xml) the "country" element
      void xsetDeliveryPointArray​(int i, org.apache.xmlbeans.XmlString deliveryPoint)
      Sets (as xml) ith "deliveryPoint" element
      void xsetDeliveryPointArray​(org.apache.xmlbeans.XmlString[] deliveryPointArray)
      Sets (as xml) array of all "deliveryPoint" element
      void xsetElectronicMailAddress​(org.apache.xmlbeans.XmlString electronicMailAddress)
      Sets (as xml) the "electronicMailAddress" element
      void xsetPostalCode​(org.apache.xmlbeans.XmlString postalCode)
      Sets (as xml) the "postalCode" element
      • Methods inherited from interface org.apache.xmlbeans.XmlObject

        changeType, compareTo, compareValue, copy, copy, execQuery, execQuery, isImmutable, isNil, schemaType, selectAttribute, selectAttribute, selectAttributes, selectChildren, selectChildren, selectChildren, selectPath, selectPath, set, setNil, substitute, toString, validate, validate, valueEquals, valueHashCode
      • Methods inherited from interface org.apache.xmlbeans.XmlTokenSource

        documentProperties, dump, getDomNode, monitor, newCursor, newDomNode, newDomNode, newInputStream, newInputStream, newReader, newReader, newXMLInputStream, newXMLInputStream, newXMLStreamReader, newXMLStreamReader, save, save, save, save, save, save, save, save, xmlText, xmlText
    • Field Detail

      • type

        static final org.apache.xmlbeans.SchemaType type
    • Method Detail

      • getDeliveryPointArray

        String[] getDeliveryPointArray()
        Gets array of all "deliveryPoint" elements
      • getDeliveryPointArray

        String getDeliveryPointArray​(int i)
        Gets ith "deliveryPoint" element
      • xgetDeliveryPointArray

        org.apache.xmlbeans.XmlString[] xgetDeliveryPointArray()
        Gets (as xml) array of all "deliveryPoint" elements
      • xgetDeliveryPointArray

        org.apache.xmlbeans.XmlString xgetDeliveryPointArray​(int i)
        Gets (as xml) ith "deliveryPoint" element
      • sizeOfDeliveryPointArray

        int sizeOfDeliveryPointArray()
        Returns number of "deliveryPoint" element
      • setDeliveryPointArray

        void setDeliveryPointArray​(String[] deliveryPointArray)
        Sets array of all "deliveryPoint" element
      • setDeliveryPointArray

        void setDeliveryPointArray​(int i,
                                   String deliveryPoint)
        Sets ith "deliveryPoint" element
      • xsetDeliveryPointArray

        void xsetDeliveryPointArray​(org.apache.xmlbeans.XmlString[] deliveryPointArray)
        Sets (as xml) array of all "deliveryPoint" element
      • xsetDeliveryPointArray

        void xsetDeliveryPointArray​(int i,
                                    org.apache.xmlbeans.XmlString deliveryPoint)
        Sets (as xml) ith "deliveryPoint" element
      • insertDeliveryPoint

        void insertDeliveryPoint​(int i,
                                 String deliveryPoint)
        Inserts the value as the ith "deliveryPoint" element
      • addDeliveryPoint

        void addDeliveryPoint​(String deliveryPoint)
        Appends the value as the last "deliveryPoint" element
      • insertNewDeliveryPoint

        org.apache.xmlbeans.XmlString insertNewDeliveryPoint​(int i)
        Inserts and returns a new empty value (as xml) as the ith "deliveryPoint" element
      • addNewDeliveryPoint

        org.apache.xmlbeans.XmlString addNewDeliveryPoint()
        Appends and returns a new empty value (as xml) as the last "deliveryPoint" element
      • removeDeliveryPoint

        void removeDeliveryPoint​(int i)
        Removes the ith "deliveryPoint" element
      • getCity

        String getCity()
        Gets the "city" element
      • xgetCity

        org.apache.xmlbeans.XmlString xgetCity()
        Gets (as xml) the "city" element
      • isSetCity

        boolean isSetCity()
        True if has "city" element
      • setCity

        void setCity​(String city)
        Sets the "city" element
      • xsetCity

        void xsetCity​(org.apache.xmlbeans.XmlString city)
        Sets (as xml) the "city" element
      • unsetCity

        void unsetCity()
        Unsets the "city" element
      • getAdministrativeArea

        String getAdministrativeArea()
        Gets the "administrativeArea" element
      • xgetAdministrativeArea

        org.apache.xmlbeans.XmlString xgetAdministrativeArea()
        Gets (as xml) the "administrativeArea" element
      • isSetAdministrativeArea

        boolean isSetAdministrativeArea()
        True if has "administrativeArea" element
      • setAdministrativeArea

        void setAdministrativeArea​(String administrativeArea)
        Sets the "administrativeArea" element
      • xsetAdministrativeArea

        void xsetAdministrativeArea​(org.apache.xmlbeans.XmlString administrativeArea)
        Sets (as xml) the "administrativeArea" element
      • unsetAdministrativeArea

        void unsetAdministrativeArea()
        Unsets the "administrativeArea" element
      • getPostalCode

        String getPostalCode()
        Gets the "postalCode" element
      • xgetPostalCode

        org.apache.xmlbeans.XmlString xgetPostalCode()
        Gets (as xml) the "postalCode" element
      • isSetPostalCode

        boolean isSetPostalCode()
        True if has "postalCode" element
      • setPostalCode

        void setPostalCode​(String postalCode)
        Sets the "postalCode" element
      • xsetPostalCode

        void xsetPostalCode​(org.apache.xmlbeans.XmlString postalCode)
        Sets (as xml) the "postalCode" element
      • unsetPostalCode

        void unsetPostalCode()
        Unsets the "postalCode" element
      • getCountry

        String getCountry()
        Gets the "country" element
      • xgetCountry

        org.apache.xmlbeans.XmlString xgetCountry()
        Gets (as xml) the "country" element
      • isSetCountry

        boolean isSetCountry()
        True if has "country" element
      • setCountry

        void setCountry​(String country)
        Sets the "country" element
      • xsetCountry

        void xsetCountry​(org.apache.xmlbeans.XmlString country)
        Sets (as xml) the "country" element
      • unsetCountry

        void unsetCountry()
        Unsets the "country" element
      • getElectronicMailAddress

        String getElectronicMailAddress()
        Gets the "electronicMailAddress" element
      • xgetElectronicMailAddress

        org.apache.xmlbeans.XmlString xgetElectronicMailAddress()
        Gets (as xml) the "electronicMailAddress" element
      • isSetElectronicMailAddress

        boolean isSetElectronicMailAddress()
        True if has "electronicMailAddress" element
      • setElectronicMailAddress

        void setElectronicMailAddress​(String electronicMailAddress)
        Sets the "electronicMailAddress" element
      • xsetElectronicMailAddress

        void xsetElectronicMailAddress​(org.apache.xmlbeans.XmlString electronicMailAddress)
        Sets (as xml) the "electronicMailAddress" element
      • unsetElectronicMailAddress

        void unsetElectronicMailAddress()
        Unsets the "electronicMailAddress" element