Package | Description |
---|---|
org.apache.datasketches.quantiles |
The quantiles package contains stochastic streaming algorithms that enable single-pass
analysis of the distribution of a stream of real (double) values or generic items.
|
Modifier and Type | Method and Description |
---|---|
DoublesUnion |
DoublesUnionBuilder.build()
Returns a new empty Union object with the current configuration of this Builder.
|
DoublesUnion |
DoublesUnionBuilder.build(org.apache.datasketches.memory.WritableMemory dstMem)
Returns a new empty Union object with the current configuration of this Builder
and the specified backing destination Memory store.
|
static DoublesUnion |
DoublesUnionBuilder.heapify(DoublesSketch sketch)
Deprecated.
moved to DoublesUnion
|
static DoublesUnion |
DoublesUnion.heapify(DoublesSketch sketch)
Returns a Heap Union object that has been initialized with the data from the given sketch.
|
static DoublesUnion |
DoublesUnionBuilder.heapify(org.apache.datasketches.memory.Memory srcMem)
Deprecated.
moved to DoublesUnion
|
static DoublesUnion |
DoublesUnion.heapify(org.apache.datasketches.memory.Memory srcMem)
Returns a Heap Union object that has been initialized with the data from the given memory
image of a sketch.
|
static DoublesUnion |
DoublesUnionBuilder.wrap(org.apache.datasketches.memory.Memory mem)
Deprecated.
moved to DoublesUnion
|
static DoublesUnion |
DoublesUnion.wrap(org.apache.datasketches.memory.Memory mem)
Returns a read-only Union object that wraps off-heap data of the given memory image of
a sketch.
|
static DoublesUnion |
DoublesUnionBuilder.wrap(org.apache.datasketches.memory.WritableMemory mem)
Deprecated.
moved to DoublesUnion
|
static DoublesUnion |
DoublesUnion.wrap(org.apache.datasketches.memory.WritableMemory mem)
Returns an updatable Union object that wraps off-heap data of the given memory image of
a sketch.
|
Copyright © 2015–2020 The Apache Software Foundation. All rights reserved.