openlr.xml.generated.PoiWithAccessPoint Maven / Gradle / Ivy
Show all versions of xml Show documentation
/**
* Licensed to the TomTom International B.V. under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. TomTom International B.V.
* licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* Copyright (C) 2009-2019 TomTom International B.V.
*
* TomTom (Legal Department)
* Email: [email protected]
*
* TomTom (Technical contact)
* Email: [email protected]
*
* Address: TomTom International B.V., Oosterdoksstraat 114, 1011DK Amsterdam,
* the Netherlands
*
* Copyright (C) 2009-2019 TomTom International B.V.
*
* TomTom (Legal Department)
* Email: [email protected]
*
* TomTom (Technical contact)
* Email: [email protected]
*
* Address: TomTom International B.V., Oosterdoksstraat 114, 1011DK Amsterdam,
* the Netherlands
*/
/**
* Copyright (C) 2009-2019 TomTom International B.V.
*
* TomTom (Legal Department)
* Email: [email protected]
*
* TomTom (Technical contact)
* Email: [email protected]
*
* Address: TomTom International B.V., Oosterdoksstraat 114, 1011DK Amsterdam,
* the Netherlands
*/
package openlr.xml.generated;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.io.Serializable;
/**
*
* Point along line with access is a point location which is defined by a line,
* an offset value and a coordinate. The line will be referenced by two location
* reference points and the concrete position of the access point on that line
* is referenced using the positive offset. The point of interest is identified
* by the coordinate pair. Additionally information about the side of the road
* where the point is located and the orientation with respect to the direction
* of the line can be added.
*
*
*
* Java class for PoiWithAccessPoint complex type.
*
*
* The following schema fragment specifies the expected content contained within
* this class.
*
*
* <complexType name="PoiWithAccessPoint">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="LocationReferencePoint" type="{http://www.openlr.org/openlr}LocationReferencePoint"/>
* <element name="LastLocationReferencePoint" type="{http://www.openlr.org/openlr}LastLocationReferencePoint"/>
* <element name="Offsets" type="{http://www.openlr.org/openlr}Offsets" minOccurs="0"/>
* <element name="Coordinates" type="{http://www.openlr.org/openlr}Coordinates"/>
* <element name="SideOfRoad" type="{http://www.openlr.org/openlr}SideOfRoad_Type" minOccurs="0"/>
* <element name="Orientation" type="{http://www.openlr.org/openlr}Orientation_Type" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PoiWithAccessPoint", propOrder = {
})
public class PoiWithAccessPoint implements Serializable {
/**
*
*/
private static final long serialVersionUID = -5384931869977590369L;
/** The location reference point. */
@XmlElement(name = "LocationReferencePoint", required = true)
protected LocationReferencePoint locationReferencePoint;
/** The last location reference point. */
@XmlElement(name = "LastLocationReferencePoint", required = true)
protected LastLocationReferencePoint lastLocationReferencePoint;
/** The offsets. */
@XmlElement(name = "Offsets")
protected Offsets offsets;
/** The coordinates. */
@XmlElement(name = "Coordinates", required = true)
protected Coordinates coordinates;
/** The side of road. */
@XmlElement(name = "SideOfRoad", defaultValue = "ON_ROAD_OR_UNKNOWN")
protected SideOfRoadType sideOfRoad;
/** The orientation. */
@XmlElement(name = "Orientation", defaultValue = "NO_ORIENTATION_OR_UNKNOWN")
protected OrientationType orientation;
/**
* Gets the value of the locationReferencePoint property.
*
* @return possible object is {@link LocationReferencePoint }
*
*/
public final LocationReferencePoint getLocationReferencePoint() {
return locationReferencePoint;
}
/**
* Sets the value of the locationReferencePoint property.
*
* @param value
* allowed object is {@link LocationReferencePoint }
*
*/
public final void setLocationReferencePoint(final LocationReferencePoint value) {
this.locationReferencePoint = value;
}
/**
* Gets the value of the lastLocationReferencePoint property.
*
* @return possible object is {@link LastLocationReferencePoint }
*
*/
public final LastLocationReferencePoint getLastLocationReferencePoint() {
return lastLocationReferencePoint;
}
/**
* Sets the value of the lastLocationReferencePoint property.
*
* @param value
* allowed object is {@link LastLocationReferencePoint }
*
*/
public final void setLastLocationReferencePoint(final LastLocationReferencePoint value) {
this.lastLocationReferencePoint = value;
}
/**
* Gets the value of the offsets property.
*
* @return possible object is {@link Offsets }
*
*/
public final Offsets getOffsets() {
return offsets;
}
/**
* Sets the value of the offsets property.
*
* @param value
* allowed object is {@link Offsets }
*
*/
public final void setOffsets(final Offsets value) {
this.offsets = value;
}
/**
* Gets the value of the coordinates property.
*
* @return possible object is {@link Coordinates }
*
*/
public final Coordinates getCoordinates() {
return coordinates;
}
/**
* Sets the value of the coordinates property.
*
* @param value
* allowed object is {@link Coordinates }
*
*/
public final void setCoordinates(final Coordinates value) {
this.coordinates = value;
}
/**
* Gets the value of the sideOfRoad property.
*
* @return possible object is {@link SideOfRoadType }
*
*/
public final SideOfRoadType getSideOfRoad() {
return sideOfRoad;
}
/**
* Sets the value of the sideOfRoad property.
*
* @param value
* allowed object is {@link SideOfRoadType }
*
*/
public final void setSideOfRoad(final SideOfRoadType value) {
this.sideOfRoad = value;
}
/**
* Gets the value of the orientation property.
*
* @return possible object is {@link OrientationType }
*
*/
public final OrientationType getOrientation() {
return orientation;
}
/**
* Sets the value of the orientation property.
*
* @param value
* allowed object is {@link OrientationType }
*
*/
public final void setOrientation(final OrientationType value) {
this.orientation = value;
}
/**
* {@inheritDoc}
*/
@Override
public final boolean equals(final Object o) {
if (o == null) {
return false;
}
if (this == o) {
return true;
}
if (!(o instanceof PoiWithAccessPoint)) {
return false;
}
PoiWithAccessPoint other = (PoiWithAccessPoint) o;
EqualsBuilder builder = new EqualsBuilder();
builder.append(locationReferencePoint, other.locationReferencePoint)
.append(lastLocationReferencePoint,
other.lastLocationReferencePoint)
.append(offsets, other.offsets)
.append(coordinates, other.coordinates)
.append(sideOfRoad, other.sideOfRoad)
.append(orientation, other.orientation);
return builder.isEquals();
}
/**
* {@inheritDoc}
*/
@Override
public final int hashCode() {
HashCodeBuilder builder = new HashCodeBuilder();
builder.append(locationReferencePoint)
.append(lastLocationReferencePoint).append(offsets)
.append(coordinates).append(sideOfRoad).append(orientation);
return builder.toHashCode();
}
}