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

be.ceau.podcastparser.models.support.GeoPoint Maven / Gradle / Ivy

/*
	Copyright 2018 Marceau Dewilde 
	
	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
	
		https://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 be.ceau.podcastparser.models.support;

import java.math.BigDecimal;

/**
 * 

* A single latitude-longitude pair. *

*

* Used in Geo and GeoRSS namespace specifications. *

*/ public class GeoPoint { private BigDecimal latitude; private BigDecimal longitude; public BigDecimal getLatitude() { return latitude; } public void setLatitude(BigDecimal latitude) { this.latitude = latitude; } public BigDecimal getLongitude() { return longitude; } public void setLongitude(BigDecimal longitude) { this.longitude = longitude; } @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("GeoPoint ["); if (latitude != null) builder.append("latitude=").append(latitude).append(", "); if (longitude != null) builder.append("longitude=").append(longitude); builder.append("]"); return builder.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy