// // 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.HashMap; 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.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; 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 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="NumberType"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * <enumeration value="Single"/> * <enumeration value="Range"/> * </restriction> * </simpleType> * </attribute> * <attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="Indicator" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> * <attribute name="IndicatorOccurrence"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * <enumeration value="Before"/> * <enumeration value="After"/> * </restriction> * </simpleType> * </attribute> * <attribute name="NumberOccurrence"> * <simpleType> * <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> * <enumeration value="BeforeName"/> * <enumeration value="AfterName"/> * <enumeration value="BeforeType"/> * <enumeration value="AfterType"/> * </restriction> * </simpleType> * </attribute> * <anyAttribute namespace='##other'/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "content" }) @XmlRootElement(name = "ThoroughfareNumber") public class ThoroughfareNumberElement { @XmlValue protected String content; @XmlAttribute(name = "NumberType") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String numberType; @XmlAttribute(name = "Type") @XmlSchemaType(name = "anySimpleType") protected String type; @XmlAttribute(name = "Indicator") @XmlSchemaType(name = "anySimpleType") protected String indicator; @XmlAttribute(name = "IndicatorOccurrence") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String indicatorOccurrence; @XmlAttribute(name = "NumberOccurrence") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String numberOccurrence; @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 numberType-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getNumberType() { return numberType; } /** * Legt den Wert der numberType-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setNumberType(String value) { this.numberType = value; } public boolean isSetNumberType() { return (this.numberType!= 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 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); } /** * Ruft den Wert der indicatorOccurrence-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getIndicatorOccurrence() { return indicatorOccurrence; } /** * Legt den Wert der indicatorOccurrence-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setIndicatorOccurrence(String value) { this.indicatorOccurrence = value; } public boolean isSetIndicatorOccurrence() { return (this.indicatorOccurrence!= null); } /** * Ruft den Wert der numberOccurrence-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getNumberOccurrence() { return numberOccurrence; } /** * Legt den Wert der numberOccurrence-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setNumberOccurrence(String value) { this.numberOccurrence = value; } public boolean isSetNumberOccurrence() { return (this.numberOccurrence!= 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; } }