Uses of Interface
org.apache.datasketches.tuple.UpdatableSummary
-
Packages that use UpdatableSummary Package Description org.apache.datasketches.tuple The tuple package contains a number of sketches based on the same fundamental algorithms of the Theta Sketch Framework and extend these concepts for whole new families of sketches.org.apache.datasketches.tuple.adouble This package is for a generic implementation of the Tuple sketch for single Double value.org.apache.datasketches.tuple.aninteger This package is for a generic implementation of the Tuple sketch for single Integer value.org.apache.datasketches.tuple.strings This package is for a generic implementation of the Tuple sketch for single String value. -
-
Uses of UpdatableSummary in org.apache.datasketches.tuple
Classes in org.apache.datasketches.tuple with type parameters of type UpdatableSummary Modifier and Type Class Description class
UpdatableSketch<U,S extends UpdatableSummary<U>>
An extension of QuickSelectSketch<S>, which can be updated with many types of keys.class
UpdatableSketchBuilder<U,S extends UpdatableSummary<U>>
For building a new generic tuple UpdatableSketchMethods in org.apache.datasketches.tuple with type parameters of type UpdatableSummary Modifier and Type Method Description static <U,S extends UpdatableSummary<U>>
UpdatableSketch<U,S>Sketches. heapifyUpdatableSketch(org.apache.datasketches.memory.Memory mem, SummaryDeserializer<S> deserializer, SummaryFactory<S> summaryFactory)
Instantiate UpdatableSketch from a given MemoryMethods in org.apache.datasketches.tuple that return UpdatableSummary Modifier and Type Method Description UpdatableSummary<U>
UpdatableSummary. update(U value)
This is to provide a method of updating summaries. -
Uses of UpdatableSummary in org.apache.datasketches.tuple.adouble
Classes in org.apache.datasketches.tuple.adouble that implement UpdatableSummary Modifier and Type Class Description class
DoubleSummary
Summary for generic tuple sketches of type Double. -
Uses of UpdatableSummary in org.apache.datasketches.tuple.aninteger
Classes in org.apache.datasketches.tuple.aninteger that implement UpdatableSummary Modifier and Type Class Description class
IntegerSummary
Summary for generic tuple sketches of type Integer. -
Uses of UpdatableSummary in org.apache.datasketches.tuple.strings
Classes in org.apache.datasketches.tuple.strings that implement UpdatableSummary Modifier and Type Class Description class
ArrayOfStringsSummary
-