com.datastax.insight.core.entity.CurvePoint Maven / Gradle / Ivy
package com.datastax.insight.core.entity;
import java.io.Serializable;
/**
* Created by huangping on 12/01/2017.
*/
public class CurvePoint implements Serializable {
private Double x;
private Double y;
public CurvePoint() {}
public CurvePoint(Double x, Double y) {
this.x = x;
this.y = 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;
}
}