org.teasoft.bee.mongodb.CenterPara Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bee Show documentation
Show all versions of bee Show documentation
Bee is a Java ORM framework.Easy and Stronger!
The newest version!
/*
* Copyright 2020-2023 the original author.All rights reserved.
* Kingstar([email protected])
*
* 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 org.teasoft.bee.mongodb;
/**
* Center parameter struct for Mongodb Geo.
* @author Kingstar
* @since 2.1
*/
public class CenterPara {
private String geoFieldName;
private double x;
private double y;
private double radius;
public CenterPara() {}
public CenterPara(String geoFieldName, double x, double y, double radius) {
this.geoFieldName = geoFieldName;
this.x = x;
this.y = y;
this.radius = radius;
}
public String getGeoFieldName() {
return geoFieldName;
}
public void setGeoFieldName(String geoFieldName) {
this.geoFieldName = geoFieldName;
}
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;
}
public double getRadius() {
return radius;
}
public void setRadius(double radius) {
this.radius = radius;
}
}