Uses of Interface
org.openrefine.browsing.facets.FacetState
-
Packages that use FacetState Package Description org.openrefine.browsing.facets org.openrefine.browsing.util -
-
Uses of FacetState in org.openrefine.browsing.facets
Classes in org.openrefine.browsing.facets with type parameters of type FacetState Modifier and Type Class Description class
FacetAggregator<T extends FacetState>
Small serializable object which embeds everything that is required to compute facet statistics.class
RowInRecordAggregator<T extends FacetState>
Classes in org.openrefine.browsing.facets that implement FacetState Modifier and Type Class Description class
AllFacetsState
State of aggregation of all facets, used to compute the states of all facets in a single aggregation over the grid.class
StringFacetState
static class
TextSearchFacet.TextSearchFacetState
Methods in org.openrefine.browsing.facets that return FacetState Modifier and Type Method Description FacetState
AllFacetsState. get(int index)
Helper for facet access.FacetState
Facet. getInitialFacetState()
An initial facet state for this facet, which can then be used to scan the table and ingest statistics about rows or records.FacetState
ScatterplotFacet. getInitialFacetState()
FacetState
StringFacet. getInitialFacetState()
FacetState
TextSearchFacet. getInitialFacetState()
FacetState
TimeRangeFacet. getInitialFacetState()
Methods in org.openrefine.browsing.facets that return types with arguments of type FacetState Modifier and Type Method Description com.google.common.collect.ImmutableList<FacetState>
AllFacetsState. getStates()
List of all facet statesMethods in org.openrefine.browsing.facets with parameters of type FacetState Modifier and Type Method Description FacetResult
Facet. getFacetResult(FacetState state)
Returns all the information necessary to render the facet in the UI (aggregation statistics and configuration combined).ListFacetResult
ListFacet. getFacetResult(FacetState state)
FacetResult
RangeFacet. getFacetResult(FacetState state)
ScatterplotFacetResult
ScatterplotFacet. getFacetResult(FacetState state)
FacetResult
StringFacet. getFacetResult(FacetState state)
FacetResult
TextSearchFacet. getFacetResult(FacetState state)
FacetResult
TimeRangeFacet. getFacetResult(FacetState state)
Constructor parameters in org.openrefine.browsing.facets with type arguments of type FacetState Constructor Description AllFacetsState(com.google.common.collect.ImmutableList<FacetState> states, com.google.common.collect.ImmutableList<ColumnStats> columnStats, long aggregatedCount, long filteredCount)
Constructs a state for aggregation of all facets. -
Uses of FacetState in org.openrefine.browsing.util
Classes in org.openrefine.browsing.util with type parameters of type FacetState Modifier and Type Class Description class
ExpressionValueFacetAggregator<T extends FacetState>
Base class for facet aggregators which update their state by evaluating an expression and aggregating its result.Classes in org.openrefine.browsing.util that implement FacetState Modifier and Type Class Description class
NumericFacetState
The aggregation state of a numeric facet, which contains two histograms: - the histogram for the rows seen by the facet (the ones selected by all other active facets) - called the view histogram - the histogram for all rows, which is used to determine the bin size, called the global histogram.class
ScatterplotFacetState
Stores the x and y coordinates of all points encountered so far by the facet aggregator.class
StringValuesFacetState
Gathers statistics about distinct string representations of values generated by an evaluable.class
TimeRangeFacetState
The aggregation state of a timeline facet, gathering statistics about the entire table and the rows in view (selected by other facets).
-