// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package oasis.names.tc.ciq.xsdschema.xal._2; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAnyAttribute; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import javax.xml.namespace.QName; /** * <p>Java-Klasse für DependentLocalityType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="DependentLocalityType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}AddressLine" maxOccurs="unbounded" minOccurs="0"/> * <element name="DependentLocalityName" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/> * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <anyAttribute namespace='##other'/> * </restriction> * </complexContent> * </complexType> * </element> * <element name="DependentLocalityNumber" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/> * <attribute name="NameNumberOccurrence"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * <enumeration value="Before"/> * <enumeration value="After"/> * </restriction> * </simpleType> * </attribute> * <anyAttribute namespace='##other'/> * </restriction> * </complexContent> * </complexType> * </element> * <choice minOccurs="0"> * <element ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}PostBox"/> * <element name="LargeMailUser" type="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}LargeMailUserType"/> * <element ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}PostOffice"/> * <element name="PostalRoute" type="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}PostalRouteType"/> * </choice> * <element ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}Thoroughfare" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}Premise" minOccurs="0"/> * <element name="DependentLocality" type="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}DependentLocalityType" minOccurs="0"/> * <element ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}PostalCode" minOccurs="0"/> * <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/> * </sequence> * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="UsageType" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="Connector" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="Indicator" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <anyAttribute namespace='##other'/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DependentLocalityType", propOrder = { "addressLine", "dependentLocalityName", "dependentLocalityNumber", "postBox", "largeMailUser", "postOffice", "postalRoute", "thoroughfare", "premise", "dependentLocality", "postalCode", "any" }) public class DependentLocalityType { @XmlElement(name = "AddressLine") protected List<AddressLineElement> addressLine; @XmlElement(name = "DependentLocalityName") protected List<DependentLocalityType.DependentLocalityName> dependentLocalityName; @XmlElement(name = "DependentLocalityNumber") protected DependentLocalityType.DependentLocalityNumber dependentLocalityNumber; @XmlElement(name = "PostBox") protected PostBoxElement postBox; @XmlElement(name = "LargeMailUser") protected LargeMailUserType largeMailUser; @XmlElement(name = "PostOffice") protected PostOfficeElement postOffice; @XmlElement(name = "PostalRoute") protected PostalRouteType postalRoute; @XmlElement(name = "Thoroughfare") protected ThoroughfareElement thoroughfare; @XmlElement(name = "Premise") protected PremiseElement premise; @XmlElement(name = "DependentLocality") protected DependentLocalityType dependentLocality; @XmlElement(name = "PostalCode") protected PostalCodeElement postalCode; @XmlAnyElement(lax = true) protected List<Object> any; @XmlAttribute(name = "Type") @XmlSchemaType(name = "anySimpleType") protected String type; @XmlAttribute(name = "UsageType") @XmlSchemaType(name = "anySimpleType") protected String usageType; @XmlAttribute(name = "Connector") @XmlSchemaType(name = "anySimpleType") protected String connector; @XmlAttribute(name = "Indicator") @XmlSchemaType(name = "anySimpleType") protected String indicator; @XmlAnyAttribute private Map<QName, String> otherAttributes = new HashMap<QName, String>(); /** * Gets the value of the addressLine property. * * <p> * 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 <CODE>set</CODE> method for the addressLine property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAddressLine().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AddressLineElement } * * */ public List<AddressLineElement> getAddressLine() { if (addressLine == null) { addressLine = new ArrayList<AddressLineElement>(); } return this.addressLine; } public boolean isSetAddressLine() { return ((this.addressLine!= null)&&(!this.addressLine.isEmpty())); } public void unsetAddressLine() { this.addressLine = null; } /** * Gets the value of the dependentLocalityName property. * * <p> * 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 <CODE>set</CODE> method for the dependentLocalityName property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDependentLocalityName().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DependentLocalityType.DependentLocalityName } * * */ public List<DependentLocalityType.DependentLocalityName> getDependentLocalityName() { if (dependentLocalityName == null) { dependentLocalityName = new ArrayList<DependentLocalityType.DependentLocalityName>(); } return this.dependentLocalityName; } public boolean isSetDependentLocalityName() { return ((this.dependentLocalityName!= null)&&(!this.dependentLocalityName.isEmpty())); } public void unsetDependentLocalityName() { this.dependentLocalityName = null; } /** * Ruft den Wert der dependentLocalityNumber-Eigenschaft ab. * * @return * possible object is * {@link DependentLocalityType.DependentLocalityNumber } * */ public DependentLocalityType.DependentLocalityNumber getDependentLocalityNumber() { return dependentLocalityNumber; } /** * Legt den Wert der dependentLocalityNumber-Eigenschaft fest. * * @param value * allowed object is * {@link DependentLocalityType.DependentLocalityNumber } * */ public void setDependentLocalityNumber(DependentLocalityType.DependentLocalityNumber value) { this.dependentLocalityNumber = value; } public boolean isSetDependentLocalityNumber() { return (this.dependentLocalityNumber!= null); } /** * Ruft den Wert der postBox-Eigenschaft ab. * * @return * possible object is * {@link PostBoxElement } * */ public PostBoxElement getPostBox() { return postBox; } /** * Legt den Wert der postBox-Eigenschaft fest. * * @param value * allowed object is * {@link PostBoxElement } * */ public void setPostBox(PostBoxElement value) { this.postBox = value; } public boolean isSetPostBox() { return (this.postBox!= null); } /** * Ruft den Wert der largeMailUser-Eigenschaft ab. * * @return * possible object is * {@link LargeMailUserType } * */ public LargeMailUserType getLargeMailUser() { return largeMailUser; } /** * Legt den Wert der largeMailUser-Eigenschaft fest. * * @param value * allowed object is * {@link LargeMailUserType } * */ public void setLargeMailUser(LargeMailUserType value) { this.largeMailUser = value; } public boolean isSetLargeMailUser() { return (this.largeMailUser!= null); } /** * Ruft den Wert der postOffice-Eigenschaft ab. * * @return * possible object is * {@link PostOfficeElement } * */ public PostOfficeElement getPostOffice() { return postOffice; } /** * Legt den Wert der postOffice-Eigenschaft fest. * * @param value * allowed object is * {@link PostOfficeElement } * */ public void setPostOffice(PostOfficeElement value) { this.postOffice = value; } public boolean isSetPostOffice() { return (this.postOffice!= null); } /** * Ruft den Wert der postalRoute-Eigenschaft ab. * * @return * possible object is * {@link PostalRouteType } * */ public PostalRouteType getPostalRoute() { return postalRoute; } /** * Legt den Wert der postalRoute-Eigenschaft fest. * * @param value * allowed object is * {@link PostalRouteType } * */ public void setPostalRoute(PostalRouteType value) { this.postalRoute = value; } public boolean isSetPostalRoute() { return (this.postalRoute!= null); } /** * Ruft den Wert der thoroughfare-Eigenschaft ab. * * @return * possible object is * {@link ThoroughfareElement } * */ public ThoroughfareElement getThoroughfare() { return thoroughfare; } /** * Legt den Wert der thoroughfare-Eigenschaft fest. * * @param value * allowed object is * {@link ThoroughfareElement } * */ public void setThoroughfare(ThoroughfareElement value) { this.thoroughfare = value; } public boolean isSetThoroughfare() { return (this.thoroughfare!= null); } /** * Ruft den Wert der premise-Eigenschaft ab. * * @return * possible object is * {@link PremiseElement } * */ public PremiseElement getPremise() { return premise; } /** * Legt den Wert der premise-Eigenschaft fest. * * @param value * allowed object is * {@link PremiseElement } * */ public void setPremise(PremiseElement value) { this.premise = value; } public boolean isSetPremise() { return (this.premise!= null); } /** * Ruft den Wert der dependentLocality-Eigenschaft ab. * * @return * possible object is * {@link DependentLocalityType } * */ public DependentLocalityType getDependentLocality() { return dependentLocality; } /** * Legt den Wert der dependentLocality-Eigenschaft fest. * * @param value * allowed object is * {@link DependentLocalityType } * */ public void setDependentLocality(DependentLocalityType value) { this.dependentLocality = value; } public boolean isSetDependentLocality() { return (this.dependentLocality!= null); } /** * Ruft den Wert der postalCode-Eigenschaft ab. * * @return * possible object is * {@link PostalCodeElement } * */ public PostalCodeElement getPostalCode() { return postalCode; } /** * Legt den Wert der postalCode-Eigenschaft fest. * * @param value * allowed object is * {@link PostalCodeElement } * */ public void setPostalCode(PostalCodeElement value) { this.postalCode = value; } public boolean isSetPostalCode() { return (this.postalCode!= null); } /** * Gets the value of the any property. * * <p> * 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 <CODE>set</CODE> method for the any property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAny().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List<Object> getAny() { if (any == null) { any = new ArrayList<Object>(); } return this.any; } public boolean isSetAny() { return ((this.any!= null)&&(!this.any.isEmpty())); } public void unsetAny() { this.any = null; } /** * Ruft den Wert der type-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } public boolean isSetType() { return (this.type!= null); } /** * Ruft den Wert der usageType-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getUsageType() { return usageType; } /** * Legt den Wert der usageType-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setUsageType(String value) { this.usageType = value; } public boolean isSetUsageType() { return (this.usageType!= null); } /** * Ruft den Wert der connector-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getConnector() { return connector; } /** * Legt den Wert der connector-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setConnector(String value) { this.connector = value; } public boolean isSetConnector() { return (this.connector!= null); } /** * Ruft den Wert der indicator-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getIndicator() { return indicator; } /** * Legt den Wert der indicator-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setIndicator(String value) { this.indicator = value; } public boolean isSetIndicator() { return (this.indicator!= null); } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * * <p> * the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map<QName, String> getOtherAttributes() { return otherAttributes; } public void setAddressLine(List<AddressLineElement> value) { this.addressLine = value; } public void setDependentLocalityName(List<DependentLocalityType.DependentLocalityName> value) { this.dependentLocalityName = value; } public void setAny(List<Object> value) { this.any = value; } /** * <p>Java-Klasse für anonymous complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/> * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <anyAttribute namespace='##other'/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) public static class DependentLocalityName { @XmlValue protected String content; @XmlAttribute(name = "Type") @XmlSchemaType(name = "anySimpleType") protected String type; @XmlAttribute(name = "Code") @XmlSchemaType(name = "anySimpleType") protected String code; @XmlAnyAttribute private Map<QName, String> otherAttributes = new HashMap<QName, String>(); /** * Ruft den Wert der content-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Legt den Wert der content-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } public boolean isSetContent() { return (this.content!= null); } /** * Ruft den Wert der type-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Legt den Wert der type-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } public boolean isSetType() { return (this.type!= null); } /** * Ruft den Wert der code-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Legt den Wert der code-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } public boolean isSetCode() { return (this.code!= null); } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * * <p> * the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map<QName, String> getOtherAttributes() { return otherAttributes; } } /** * <p>Java-Klasse für anonymous complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attGroup ref="{urn:oasis:names:tc:ciq:xsdschema:xAL:2.0}grPostal"/> * <attribute name="NameNumberOccurrence"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * <enumeration value="Before"/> * <enumeration value="After"/> * </restriction> * </simpleType> * </attribute> * <anyAttribute namespace='##other'/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) public static class DependentLocalityNumber { @XmlValue protected String content; @XmlAttribute(name = "NameNumberOccurrence") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String nameNumberOccurrence; @XmlAttribute(name = "Code") @XmlSchemaType(name = "anySimpleType") protected String code; @XmlAnyAttribute private Map<QName, String> otherAttributes = new HashMap<QName, String>(); /** * Ruft den Wert der content-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Legt den Wert der content-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } public boolean isSetContent() { return (this.content!= null); } /** * Ruft den Wert der nameNumberOccurrence-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getNameNumberOccurrence() { return nameNumberOccurrence; } /** * Legt den Wert der nameNumberOccurrence-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setNameNumberOccurrence(String value) { this.nameNumberOccurrence = value; } public boolean isSetNameNumberOccurrence() { return (this.nameNumberOccurrence!= null); } /** * Ruft den Wert der code-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Legt den Wert der code-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } public boolean isSetCode() { return (this.code!= null); } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * * <p> * the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map<QName, String> getOtherAttributes() { return otherAttributes; } } }