Package org.openrefine.browsing.facets
Class ScatterplotFacetResult
- java.lang.Object
-
- org.openrefine.browsing.facets.ScatterplotFacetResult
-
- All Implemented Interfaces:
FacetResult
public class ScatterplotFacetResult extends Object implements FacetResult
Represents the statistics sent to the frontend for a scatterplot facet. The scatterplot image is sent separately.- Author:
- Antonin Delpeuch
-
-
Constructor Summary
Constructors Constructor Description ScatterplotFacetResult(ScatterplotFacet.ScatterplotFacetConfig config, String errorMessageX, String errorMessageY, ScatterplotFacetState facetState)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ScatterplotFacet.Dimension
getDimX()
ScatterplotFacet.Dimension
getDimY()
double
getDot()
String
getErrorX()
String
getErrorY()
ScatterplotFacetState
getFacetState()
Double
getFromX()
Double
getFromY()
Double
getMaxX()
Double
getMaxY()
Double
getMinX()
Double
getMinY()
String
getName()
ScatterplotFacet.Rotation
getRotation()
int
getSize()
Double
getToX()
Double
getToY()
String
getXColumnName()
String
getXExpression()
String
getYColumnName()
String
getYExpression()
-
-
-
Constructor Detail
-
ScatterplotFacetResult
public ScatterplotFacetResult(ScatterplotFacet.ScatterplotFacetConfig config, String errorMessageX, String errorMessageY, ScatterplotFacetState facetState)
-
-
Method Detail
-
getName
public String getName()
-
getXColumnName
public String getXColumnName()
-
getXExpression
public String getXExpression()
-
getYColumnName
public String getYColumnName()
-
getYExpression
public String getYExpression()
-
getSize
public int getSize()
-
getDimX
public ScatterplotFacet.Dimension getDimX()
-
getDimY
public ScatterplotFacet.Dimension getDimY()
-
getDot
public double getDot()
-
getRotation
public ScatterplotFacet.Rotation getRotation()
-
getErrorX
public String getErrorX()
-
getFromX
public Double getFromX()
-
getToX
public Double getToX()
-
getErrorY
public String getErrorY()
-
getFromY
public Double getFromY()
-
getToY
public Double getToY()
-
getMinX
public Double getMinX()
-
getMaxX
public Double getMaxX()
-
getMinY
public Double getMinY()
-
getMaxY
public Double getMaxY()
-
getFacetState
public ScatterplotFacetState getFacetState()
-
-