br.com.anteros.nosql.persistence.mongodb.geo.PointBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-NoSql-Persistence-MongoDB Show documentation
Show all versions of Anteros-NoSql-Persistence-MongoDB Show documentation
Anteros NoSQL Persistence MongoDB.
package br.com.anteros.nosql.persistence.mongodb.geo;
public class PointBuilder {
private double longitude;
private double latitude;
public static PointBuilder pointBuilder() {
return new PointBuilder();
}
public Point build() {
return new Point(latitude, longitude);
}
public PointBuilder latitude(final double latitude) {
this.latitude = latitude;
return this;
}
public PointBuilder longitude(final double longitude) {
this.longitude = longitude;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy