com.rometools.modules.georss.geometries.LinearRing Maven / Gradle / Ivy
/*
* Licensed 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.
*
*/
package com.rometools.modules.georss.geometries;
/**
* Linear boundary object constructed by linear interpolation between points. Start and end point
* should be identical.
*
* @author runaas
*/
public final class LinearRing extends AbstractRing {
/**
*
*/
private static final long serialVersionUID = 1L;
private PositionList posList;
/** Creates a new instance of LinearLing */
public LinearRing() {
}
public LinearRing(final PositionList posList) {
this.posList = posList;
}
@Override
public Object clone() throws CloneNotSupportedException {
final LinearRing retval = (LinearRing) super.clone();
if (posList != null) {
retval.posList = (PositionList) posList.clone();
}
return retval;
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!super.equals(obj)) {
return false;
}
return getPositionList().equals(((LinearRing) obj).getPositionList());
}
/**
* Get the position list
*
* @return the positionlist
*/
public PositionList getPositionList() {
if (posList == null) {
posList = new PositionList();
}
return posList;
}
/**
* Set the position list
*
* @param posList the new position list
*/
public void setPositionList(final PositionList posList) {
this.posList = posList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy