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

goja.rapid.baidu.dto.GeoLocationDto Maven / Gradle / Ivy

The newest version!
package goja.rapid.baidu.dto;

import com.google.common.base.MoreObjects;

/**
 * 

* * @author sog * @version 1.0 * @since JDK 1.6 */ public class GeoLocationDto { private double x; private double y; public double getX() { return x; } public void setX(double x) { this.x = x; } public double getY() { return y; } public void setY(double y) { this.y = y; } @Override public String toString() { return MoreObjects.toStringHelper(this) .add("x", x) .add("y", y) .toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy