org.rutebanken.netex.model.Site_VersionStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netex-java-model Show documentation
Show all versions of netex-java-model Show documentation
Generates Java model from NeTEx XSDs using JAXB.
//
// 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 java.math.BigInteger;
import java.time.OffsetDateTime;
import java.util.Collection;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import net.opengis.gml._3.PolygonType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.rutebanken.netex.OmitNullsToStringStyle;
/**
* Java class for Site_VersionStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Site_VersionStructure">
* <complexContent>
* <extension base="{http://www.netex.org.uk/netex}SiteElement_VersionStructure">
* <sequence>
* <group ref="{http://www.netex.org.uk/netex}SiteGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Site_VersionStructure", propOrder = {
"topographicPlaceRef",
"topographicPlaceView",
"additionalTopographicPlaces",
"siteType",
"atCentre",
"locale",
"organisationRef",
"operatingOrganisationView",
"parentSiteRef",
"adjacentSites",
"containedInPlaceRef",
"levels",
"entrances",
"equipmentPlaces",
"placeEquipments",
"localServices"
})
@XmlSeeAlso({
ServiceSite_VersionStructure.class,
StopPlace_VersionStructure.class,
Parking_VersionStructure.class,
PointOfInterest_VersionStructure.class
})
public abstract class Site_VersionStructure
extends SiteElement_VersionStructure
{
@XmlElement(name = "TopographicPlaceRef")
protected TopographicPlaceRefStructure topographicPlaceRef;
@XmlElement(name = "TopographicPlaceView")
protected TopographicPlaceView topographicPlaceView;
protected TopographicPlaceRefs_RelStructure additionalTopographicPlaces;
@XmlElement(name = "SiteType")
@XmlSchemaType(name = "string")
protected SiteTypeEnumeration siteType;
@XmlElement(name = "AtCentre")
protected Boolean atCentre;
@XmlElement(name = "Locale")
protected LocaleStructure locale;
@XmlElementRef(name = "OrganisationRef", namespace = "http://www.netex.org.uk/netex", type = JAXBElement.class, required = false)
protected JAXBElement extends OrganisationRefStructure> organisationRef;
@XmlElement(name = "OperatingOrganisationView")
protected Organisation_DerivedViewStructure operatingOrganisationView;
@XmlElement(name = "ParentSiteRef")
protected SiteRefStructure parentSiteRef;
protected SiteRefs_RelStructure adjacentSites;
@XmlElement(name = "ContainedInPlaceRef")
protected TopographicPlaceRefStructure containedInPlaceRef;
protected Levels_RelStructure levels;
protected SiteEntrances_RelStructure entrances;
protected EquipmentPlaces_RelStructure equipmentPlaces;
protected PlaceEquipments_RelStructure placeEquipments;
protected LocalServices_RelStructure localServices;
/**
* Gets the value of the topographicPlaceRef property.
*
* @return
* possible object is
* {@link TopographicPlaceRefStructure }
*
*/
public TopographicPlaceRefStructure getTopographicPlaceRef() {
return topographicPlaceRef;
}
/**
* Sets the value of the topographicPlaceRef property.
*
* @param value
* allowed object is
* {@link TopographicPlaceRefStructure }
*
*/
public void setTopographicPlaceRef(TopographicPlaceRefStructure value) {
this.topographicPlaceRef = value;
}
/**
* Gets the value of the topographicPlaceView property.
*
* @return
* possible object is
* {@link TopographicPlaceView }
*
*/
public TopographicPlaceView getTopographicPlaceView() {
return topographicPlaceView;
}
/**
* Sets the value of the topographicPlaceView property.
*
* @param value
* allowed object is
* {@link TopographicPlaceView }
*
*/
public void setTopographicPlaceView(TopographicPlaceView value) {
this.topographicPlaceView = value;
}
/**
* Gets the value of the additionalTopographicPlaces property.
*
* @return
* possible object is
* {@link TopographicPlaceRefs_RelStructure }
*
*/
public TopographicPlaceRefs_RelStructure getAdditionalTopographicPlaces() {
return additionalTopographicPlaces;
}
/**
* Sets the value of the additionalTopographicPlaces property.
*
* @param value
* allowed object is
* {@link TopographicPlaceRefs_RelStructure }
*
*/
public void setAdditionalTopographicPlaces(TopographicPlaceRefs_RelStructure value) {
this.additionalTopographicPlaces = value;
}
/**
* Gets the value of the siteType property.
*
* @return
* possible object is
* {@link SiteTypeEnumeration }
*
*/
public SiteTypeEnumeration getSiteType() {
return siteType;
}
/**
* Sets the value of the siteType property.
*
* @param value
* allowed object is
* {@link SiteTypeEnumeration }
*
*/
public void setSiteType(SiteTypeEnumeration value) {
this.siteType = value;
}
/**
* Gets the value of the atCentre property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAtCentre() {
return atCentre;
}
/**
* Sets the value of the atCentre property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAtCentre(Boolean value) {
this.atCentre = value;
}
/**
* Gets the value of the locale property.
*
* @return
* possible object is
* {@link LocaleStructure }
*
*/
public LocaleStructure getLocale() {
return locale;
}
/**
* Sets the value of the locale property.
*
* @param value
* allowed object is
* {@link LocaleStructure }
*
*/
public void setLocale(LocaleStructure value) {
this.locale = value;
}
/**
* Gets the value of the organisationRef property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link RetailConsortiumRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link AuthorityRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link GeneralOrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link OrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ManagementAgentRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link OtherOrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link OrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link TravelAgentRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ServicedOrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link OperatorRefStructure }{@code >}
*
*/
public JAXBElement extends OrganisationRefStructure> getOrganisationRef() {
return organisationRef;
}
/**
* Sets the value of the organisationRef property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link RetailConsortiumRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link AuthorityRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link GeneralOrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link OrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ManagementAgentRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link OtherOrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link OrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link TravelAgentRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link ServicedOrganisationRefStructure }{@code >}
* {@link JAXBElement }{@code <}{@link OperatorRefStructure }{@code >}
*
*/
public void setOrganisationRef(JAXBElement extends OrganisationRefStructure> value) {
this.organisationRef = value;
}
/**
* Gets the value of the operatingOrganisationView property.
*
* @return
* possible object is
* {@link Organisation_DerivedViewStructure }
*
*/
public Organisation_DerivedViewStructure getOperatingOrganisationView() {
return operatingOrganisationView;
}
/**
* Sets the value of the operatingOrganisationView property.
*
* @param value
* allowed object is
* {@link Organisation_DerivedViewStructure }
*
*/
public void setOperatingOrganisationView(Organisation_DerivedViewStructure value) {
this.operatingOrganisationView = value;
}
/**
* Gets the value of the parentSiteRef property.
*
* @return
* possible object is
* {@link SiteRefStructure }
*
*/
public SiteRefStructure getParentSiteRef() {
return parentSiteRef;
}
/**
* Sets the value of the parentSiteRef property.
*
* @param value
* allowed object is
* {@link SiteRefStructure }
*
*/
public void setParentSiteRef(SiteRefStructure value) {
this.parentSiteRef = value;
}
/**
* Gets the value of the adjacentSites property.
*
* @return
* possible object is
* {@link SiteRefs_RelStructure }
*
*/
public SiteRefs_RelStructure getAdjacentSites() {
return adjacentSites;
}
/**
* Sets the value of the adjacentSites property.
*
* @param value
* allowed object is
* {@link SiteRefs_RelStructure }
*
*/
public void setAdjacentSites(SiteRefs_RelStructure value) {
this.adjacentSites = value;
}
/**
* Gets the value of the containedInPlaceRef property.
*
* @return
* possible object is
* {@link TopographicPlaceRefStructure }
*
*/
public TopographicPlaceRefStructure getContainedInPlaceRef() {
return containedInPlaceRef;
}
/**
* Sets the value of the containedInPlaceRef property.
*
* @param value
* allowed object is
* {@link TopographicPlaceRefStructure }
*
*/
public void setContainedInPlaceRef(TopographicPlaceRefStructure value) {
this.containedInPlaceRef = value;
}
/**
* Gets the value of the levels property.
*
* @return
* possible object is
* {@link Levels_RelStructure }
*
*/
public Levels_RelStructure getLevels() {
return levels;
}
/**
* Sets the value of the levels property.
*
* @param value
* allowed object is
* {@link Levels_RelStructure }
*
*/
public void setLevels(Levels_RelStructure value) {
this.levels = value;
}
/**
* Gets the value of the entrances property.
*
* @return
* possible object is
* {@link SiteEntrances_RelStructure }
*
*/
public SiteEntrances_RelStructure getEntrances() {
return entrances;
}
/**
* Sets the value of the entrances property.
*
* @param value
* allowed object is
* {@link SiteEntrances_RelStructure }
*
*/
public void setEntrances(SiteEntrances_RelStructure value) {
this.entrances = value;
}
/**
* Gets the value of the equipmentPlaces property.
*
* @return
* possible object is
* {@link EquipmentPlaces_RelStructure }
*
*/
public EquipmentPlaces_RelStructure getEquipmentPlaces() {
return equipmentPlaces;
}
/**
* Sets the value of the equipmentPlaces property.
*
* @param value
* allowed object is
* {@link EquipmentPlaces_RelStructure }
*
*/
public void setEquipmentPlaces(EquipmentPlaces_RelStructure value) {
this.equipmentPlaces = value;
}
/**
* Gets the value of the placeEquipments property.
*
* @return
* possible object is
* {@link PlaceEquipments_RelStructure }
*
*/
public PlaceEquipments_RelStructure getPlaceEquipments() {
return placeEquipments;
}
/**
* Sets the value of the placeEquipments property.
*
* @param value
* allowed object is
* {@link PlaceEquipments_RelStructure }
*
*/
public void setPlaceEquipments(PlaceEquipments_RelStructure value) {
this.placeEquipments = value;
}
/**
* Gets the value of the localServices property.
*
* @return
* possible object is
* {@link LocalServices_RelStructure }
*
*/
public LocalServices_RelStructure getLocalServices() {
return localServices;
}
/**
* Sets the value of the localServices property.
*
* @param value
* allowed object is
* {@link LocalServices_RelStructure }
*
*/
public void setLocalServices(LocalServices_RelStructure value) {
this.localServices = value;
}
public Site_VersionStructure withTopographicPlaceRef(TopographicPlaceRefStructure value) {
setTopographicPlaceRef(value);
return this;
}
public Site_VersionStructure withTopographicPlaceView(TopographicPlaceView value) {
setTopographicPlaceView(value);
return this;
}
public Site_VersionStructure withAdditionalTopographicPlaces(TopographicPlaceRefs_RelStructure value) {
setAdditionalTopographicPlaces(value);
return this;
}
public Site_VersionStructure withSiteType(SiteTypeEnumeration value) {
setSiteType(value);
return this;
}
public Site_VersionStructure withAtCentre(Boolean value) {
setAtCentre(value);
return this;
}
public Site_VersionStructure withLocale(LocaleStructure value) {
setLocale(value);
return this;
}
public Site_VersionStructure withOrganisationRef(JAXBElement extends OrganisationRefStructure> value) {
setOrganisationRef(value);
return this;
}
public Site_VersionStructure withOperatingOrganisationView(Organisation_DerivedViewStructure value) {
setOperatingOrganisationView(value);
return this;
}
public Site_VersionStructure withParentSiteRef(SiteRefStructure value) {
setParentSiteRef(value);
return this;
}
public Site_VersionStructure withAdjacentSites(SiteRefs_RelStructure value) {
setAdjacentSites(value);
return this;
}
public Site_VersionStructure withContainedInPlaceRef(TopographicPlaceRefStructure value) {
setContainedInPlaceRef(value);
return this;
}
public Site_VersionStructure withLevels(Levels_RelStructure value) {
setLevels(value);
return this;
}
public Site_VersionStructure withEntrances(SiteEntrances_RelStructure value) {
setEntrances(value);
return this;
}
public Site_VersionStructure withEquipmentPlaces(EquipmentPlaces_RelStructure value) {
setEquipmentPlaces(value);
return this;
}
public Site_VersionStructure withPlaceEquipments(PlaceEquipments_RelStructure value) {
setPlaceEquipments(value);
return this;
}
public Site_VersionStructure withLocalServices(LocalServices_RelStructure value) {
setLocalServices(value);
return this;
}
@Override
public Site_VersionStructure withAccessibilityAssessment(AccessibilityAssessment value) {
setAccessibilityAssessment(value);
return this;
}
@Override
public Site_VersionStructure withAccessModes(AccessModeEnumeration... values) {
if (values!= null) {
for (AccessModeEnumeration value: values) {
getAccessModes().add(value);
}
}
return this;
}
@Override
public Site_VersionStructure withAccessModes(Collection values) {
if (values!= null) {
getAccessModes().addAll(values);
}
return this;
}
@Override
public Site_VersionStructure withNameSuffix(MultilingualString value) {
setNameSuffix(value);
return this;
}
@Override
public Site_VersionStructure withAlternativeNames(AlternativeNames_RelStructure value) {
setAlternativeNames(value);
return this;
}
@Override
public Site_VersionStructure withCrossRoad(MultilingualString value) {
setCrossRoad(value);
return this;
}
@Override
public Site_VersionStructure withLandmark(MultilingualString value) {
setLandmark(value);
return this;
}
@Override
public Site_VersionStructure withPublicUse(PublicUseEnumeration value) {
setPublicUse(value);
return this;
}
@Override
public Site_VersionStructure withCovered(CoveredEnumeration value) {
setCovered(value);
return this;
}
@Override
public Site_VersionStructure withGated(GatedEnumeration value) {
setGated(value);
return this;
}
@Override
public Site_VersionStructure withLighting(LightingEnumeration value) {
setLighting(value);
return this;
}
@Override
public Site_VersionStructure withAllAreasWheelchairAccessible(Boolean value) {
setAllAreasWheelchairAccessible(value);
return this;
}
@Override
public Site_VersionStructure withPersonCapacity(BigInteger value) {
setPersonCapacity(value);
return this;
}
@Override
public Site_VersionStructure withFacilities(SiteFacilitySets_RelStructure value) {
setFacilities(value);
return this;
}
@Override
public Site_VersionStructure withUrl(String value) {
setUrl(value);
return this;
}
@Override
public Site_VersionStructure withImage(String value) {
setImage(value);
return this;
}
@Override
public Site_VersionStructure withPostalAddress(PostalAddress value) {
setPostalAddress(value);
return this;
}
@Override
public Site_VersionStructure withRoadAddress(RoadAddress value) {
setRoadAddress(value);
return this;
}
@Override
public Site_VersionStructure withPlaceTypes(TypeOfPlaceRefs_RelStructure value) {
setPlaceTypes(value);
return this;
}
@Override
public Site_VersionStructure withTypes(TypeOfZoneRefs_RelStructure value) {
setTypes(value);
return this;
}
@Override
public Site_VersionStructure withCentroid(SimplePoint_VersionStructure value) {
setCentroid(value);
return this;
}
@Override
public Site_VersionStructure withPolygon(PolygonType value) {
setPolygon(value);
return this;
}
@Override
public Site_VersionStructure withProjections(Projections_RelStructure value) {
setProjections(value);
return this;
}
@Override
public Site_VersionStructure withParentZoneRef(ZoneRefStructure value) {
setParentZoneRef(value);
return this;
}
@Override
public Site_VersionStructure withMembers(PointRefs_RelStructure value) {
setMembers(value);
return this;
}
@Override
public Site_VersionStructure withName(MultilingualString value) {
setName(value);
return this;
}
@Override
public Site_VersionStructure withShortName(MultilingualString value) {
setShortName(value);
return this;
}
@Override
public Site_VersionStructure withDescription(MultilingualString value) {
setDescription(value);
return this;
}
@Override
public Site_VersionStructure withPurposeOfGroupingRef(PurposeOfGroupingRefStructure value) {
setPurposeOfGroupingRef(value);
return this;
}
@Override
public Site_VersionStructure withPrivateCode(PrivateCodeStructure value) {
setPrivateCode(value);
return this;
}
@Override
public Site_VersionStructure withKeyList(KeyListStructure value) {
setKeyList(value);
return this;
}
@Override
public Site_VersionStructure withExtensions(ExtensionsStructure value) {
setExtensions(value);
return this;
}
@Override
public Site_VersionStructure withBrandingRef(BrandingRefStructure value) {
setBrandingRef(value);
return this;
}
@Override
public Site_VersionStructure withAlternativeTexts(AlternativeTexts_RelStructure value) {
setAlternativeTexts(value);
return this;
}
@Override
public Site_VersionStructure withResponsibilitySetRef(String value) {
setResponsibilitySetRef(value);
return this;
}
@Override
public Site_VersionStructure withValidityConditions(ValidityConditions_RelStructure value) {
setValidityConditions(value);
return this;
}
@Override
public Site_VersionStructure withValidBetween(ValidBetween... values) {
if (values!= null) {
for (ValidBetween value: values) {
getValidBetween().add(value);
}
}
return this;
}
@Override
public Site_VersionStructure withValidBetween(Collection values) {
if (values!= null) {
getValidBetween().addAll(values);
}
return this;
}
@Override
public Site_VersionStructure withDataSourceRef(String value) {
setDataSourceRef(value);
return this;
}
@Override
public Site_VersionStructure withCreated(OffsetDateTime value) {
setCreated(value);
return this;
}
@Override
public Site_VersionStructure withChanged(OffsetDateTime value) {
setChanged(value);
return this;
}
@Override
public Site_VersionStructure withModification(ModificationEnumeration value) {
setModification(value);
return this;
}
@Override
public Site_VersionStructure withVersion(String value) {
setVersion(value);
return this;
}
@Override
public Site_VersionStructure withStatus_BasicModificationDetailsGroup(StatusEnumeration value) {
setStatus_BasicModificationDetailsGroup(value);
return this;
}
@Override
public Site_VersionStructure withDerivedFromVersionRef_BasicModificationDetailsGroup(String value) {
setDerivedFromVersionRef_BasicModificationDetailsGroup(value);
return this;
}
@Override
public Site_VersionStructure withCompatibleWithVersionFrameVersionRef(String value) {
setCompatibleWithVersionFrameVersionRef(value);
return this;
}
@Override
public Site_VersionStructure withDerivedFromObjectRef(String value) {
setDerivedFromObjectRef(value);
return this;
}
@Override
public Site_VersionStructure withNameOfClass(String value) {
setNameOfClass(value);
return this;
}
@Override
public Site_VersionStructure withId(String value) {
setId(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