All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rutebanken.netex.model.CountryRefStructure Maven / Gradle / Ivy

There is a newer version: 2.0.15
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.09.21 at 10:53:23 AM CEST 
//


package org.rutebanken.netex.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;


/**
 * 

Java class for CountryRefStructure complex type. * *

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

 * <complexType name="CountryRefStructure">
 *   <simpleContent>
 *     <extension base="<http://www.netex.org.uk/netex>CountryPrincipalityCodeType">
 *       <attribute name="ref" type="{http://www.netex.org.uk/netex}CountryCodeType" />
 *       <attribute name="refPrincipality" type="{http://www.netex.org.uk/netex}CountryPrincipalityCodeType" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CountryRefStructure", propOrder = { "value" }) @XmlSeeAlso({ CountryRef.class }) public class CountryRefStructure { @XmlValue protected String value; @XmlAttribute(name = "ref") protected IanaCountryTldEnumeration ref; @XmlAttribute(name = "refPrincipality") protected String refPrincipality; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the ref property. * * @return * possible object is * {@link IanaCountryTldEnumeration } * */ public IanaCountryTldEnumeration getRef() { return ref; } /** * Sets the value of the ref property. * * @param value * allowed object is * {@link IanaCountryTldEnumeration } * */ public void setRef(IanaCountryTldEnumeration value) { this.ref = value; } /** * Gets the value of the refPrincipality property. * * @return * possible object is * {@link String } * */ public String getRefPrincipality() { return refPrincipality; } /** * Sets the value of the refPrincipality property. * * @param value * allowed object is * {@link String } * */ public void setRefPrincipality(String value) { this.refPrincipality = value; } public CountryRefStructure withValue(String value) { setValue(value); return this; } public CountryRefStructure withRef(IanaCountryTldEnumeration value) { setRef(value); return this; } public CountryRefStructure withRefPrincipality(String value) { setRefPrincipality(value); return this; } /** * Generates a String representation of the contents of this type. * This is an extension method, produced by the 'ts' xjc plugin * */ @Override public String toString() { return ToStringBuilder.reflectionToString(this, OmitNullsToStringStyle.INSTANCE); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy