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.DimensiongetDimX()ScatterplotFacet.DimensiongetDimY()doublegetDot()StringgetErrorX()StringgetErrorY()ScatterplotFacetStategetFacetState()DoublegetFromX()DoublegetFromY()DoublegetMaxX()DoublegetMaxY()DoublegetMinX()DoublegetMinY()StringgetName()ScatterplotFacet.RotationgetRotation()intgetSize()DoublegetToX()DoublegetToY()StringgetXColumnName()StringgetXExpression()StringgetYColumnName()StringgetYExpression()
-
-
-
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()
-
-