com.microsoft.schemas.office.drawing.x2014.chartex.CTAddress Maven / Gradle / Ivy
/*
* XML Type: CT_Address
* Namespace: http://schemas.microsoft.com/office/drawing/2014/chartex
* Java type: com.microsoft.schemas.office.drawing.x2014.chartex.CTAddress
*
* Automatically generated - do not modify.
*/
package com.microsoft.schemas.office.drawing.x2014.chartex;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* An XML CT_Address(@http://schemas.microsoft.com/office/drawing/2014/chartex).
*
* This is a complex type.
*/
public interface CTAddress extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctaddress3b3ctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "address1" attribute
*/
java.lang.String getAddress1();
/**
* Gets (as xml) the "address1" attribute
*/
org.apache.xmlbeans.XmlString xgetAddress1();
/**
* True if has "address1" attribute
*/
boolean isSetAddress1();
/**
* Sets the "address1" attribute
*/
void setAddress1(java.lang.String address1);
/**
* Sets (as xml) the "address1" attribute
*/
void xsetAddress1(org.apache.xmlbeans.XmlString address1);
/**
* Unsets the "address1" attribute
*/
void unsetAddress1();
/**
* Gets the "countryRegion" attribute
*/
java.lang.String getCountryRegion();
/**
* Gets (as xml) the "countryRegion" attribute
*/
org.apache.xmlbeans.XmlString xgetCountryRegion();
/**
* True if has "countryRegion" attribute
*/
boolean isSetCountryRegion();
/**
* Sets the "countryRegion" attribute
*/
void setCountryRegion(java.lang.String countryRegion);
/**
* Sets (as xml) the "countryRegion" attribute
*/
void xsetCountryRegion(org.apache.xmlbeans.XmlString countryRegion);
/**
* Unsets the "countryRegion" attribute
*/
void unsetCountryRegion();
/**
* Gets the "adminDistrict1" attribute
*/
java.lang.String getAdminDistrict1();
/**
* Gets (as xml) the "adminDistrict1" attribute
*/
org.apache.xmlbeans.XmlString xgetAdminDistrict1();
/**
* True if has "adminDistrict1" attribute
*/
boolean isSetAdminDistrict1();
/**
* Sets the "adminDistrict1" attribute
*/
void setAdminDistrict1(java.lang.String adminDistrict1);
/**
* Sets (as xml) the "adminDistrict1" attribute
*/
void xsetAdminDistrict1(org.apache.xmlbeans.XmlString adminDistrict1);
/**
* Unsets the "adminDistrict1" attribute
*/
void unsetAdminDistrict1();
/**
* Gets the "adminDistrict2" attribute
*/
java.lang.String getAdminDistrict2();
/**
* Gets (as xml) the "adminDistrict2" attribute
*/
org.apache.xmlbeans.XmlString xgetAdminDistrict2();
/**
* True if has "adminDistrict2" attribute
*/
boolean isSetAdminDistrict2();
/**
* Sets the "adminDistrict2" attribute
*/
void setAdminDistrict2(java.lang.String adminDistrict2);
/**
* Sets (as xml) the "adminDistrict2" attribute
*/
void xsetAdminDistrict2(org.apache.xmlbeans.XmlString adminDistrict2);
/**
* Unsets the "adminDistrict2" attribute
*/
void unsetAdminDistrict2();
/**
* Gets the "postalCode" attribute
*/
java.lang.String getPostalCode();
/**
* Gets (as xml) the "postalCode" attribute
*/
org.apache.xmlbeans.XmlString xgetPostalCode();
/**
* True if has "postalCode" attribute
*/
boolean isSetPostalCode();
/**
* Sets the "postalCode" attribute
*/
void setPostalCode(java.lang.String postalCode);
/**
* Sets (as xml) the "postalCode" attribute
*/
void xsetPostalCode(org.apache.xmlbeans.XmlString postalCode);
/**
* Unsets the "postalCode" attribute
*/
void unsetPostalCode();
/**
* Gets the "locality" attribute
*/
java.lang.String getLocality();
/**
* Gets (as xml) the "locality" attribute
*/
org.apache.xmlbeans.XmlString xgetLocality();
/**
* True if has "locality" attribute
*/
boolean isSetLocality();
/**
* Sets the "locality" attribute
*/
void setLocality(java.lang.String locality);
/**
* Sets (as xml) the "locality" attribute
*/
void xsetLocality(org.apache.xmlbeans.XmlString locality);
/**
* Unsets the "locality" attribute
*/
void unsetLocality();
/**
* Gets the "isoCountryCode" attribute
*/
java.lang.String getIsoCountryCode();
/**
* Gets (as xml) the "isoCountryCode" attribute
*/
org.apache.xmlbeans.XmlString xgetIsoCountryCode();
/**
* True if has "isoCountryCode" attribute
*/
boolean isSetIsoCountryCode();
/**
* Sets the "isoCountryCode" attribute
*/
void setIsoCountryCode(java.lang.String isoCountryCode);
/**
* Sets (as xml) the "isoCountryCode" attribute
*/
void xsetIsoCountryCode(org.apache.xmlbeans.XmlString isoCountryCode);
/**
* Unsets the "isoCountryCode" attribute
*/
void unsetIsoCountryCode();
}