com.moilioncircle.redis.replicator.cmd.impl.GEO Maven / Gradle / Ivy
package com.moilioncircle.redis.replicator.cmd.impl;
/**
* Created by leon on 8/20/16.
*/
public class GEO {
public final String member;
public final double longitude;
public final double latitude;
public GEO(String member, double longitude, double latitude) {
this.member = member;
this.longitude = longitude;
this.latitude = latitude;
}
@Override
public String toString() {
return "GEO{" +
"member='" + member + '\'' +
", longitude=" + longitude +
", latitude=" + latitude +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy