Class IncludeMinMax.ItemsPair<T>
- java.lang.Object
-
- org.apache.datasketches.quantilescommon.IncludeMinMax.ItemsPair<T>
-
- Type Parameters:
T
- the item class type
- Enclosing class:
- IncludeMinMax
public static class IncludeMinMax.ItemsPair<T> extends Object
A simple structure to hold a pair of arrays
-
-
Field Summary
Fields Modifier and Type Field Description long[]
cumWeights
The array of associated cumulative weightsT[]
quantiles
The array of quantiles
-
-
-
Field Detail
-
quantiles
public T[] quantiles
The array of quantiles
-
cumWeights
public long[] cumWeights
The array of associated cumulative weights
-
-
Constructor Detail
-
ItemsPair
public ItemsPair(T[] quantiles, long[] cumWeights)
Constructor.- Parameters:
quantiles
- the array of quantilescumWeights
- the array of associated cumulative weights
-
-