package cactusServer.entities; public class Depth3D { private double depthX,depthY,depthZ; private Depth3D() { //Jsonデコード用 } public double getDepthX() { return depthX; } public void setDepthX(double depthX) { this.depthX = depthX; } public double getDepthY() { return depthY; } public void setDepthY(double depthY) { this.depthY = depthY; } public double getDepthZ() { return depthZ; } public void setDepthZ(double depthZ) { this.depthZ = depthZ; } }