All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.sketches.hive.tuple.ArrayOfDoublesUnionState Maven / Gradle / Ivy

There is a newer version: 0.13.0
Show newest version
/*
 * Copyright 2016, Yahoo! Inc.
 * Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms.
 */

package com.yahoo.sketches.hive.tuple;

import com.yahoo.sketches.tuple.ArrayOfDoublesSetOperationBuilder;
import com.yahoo.sketches.tuple.ArrayOfDoublesSketch;
import com.yahoo.sketches.tuple.ArrayOfDoublesUnion;

class ArrayOfDoublesUnionState extends ArrayOfDoublesState {

  private ArrayOfDoublesUnion union_;

  boolean isInitialized() {
    return union_ != null;
  }

  @Override
  void init(final int nominalNumEntries, final int numValues) {
    super.init(nominalNumEntries, numValues);
    union_ = new ArrayOfDoublesSetOperationBuilder()
        .setNominalEntries(nominalNumEntries).setNumberOfValues(numValues).buildUnion();
  }

  void update(final ArrayOfDoublesSketch sketch) {
    union_.update(sketch);
  }

  @Override
  ArrayOfDoublesSketch getResult() {
    if (union_ == null) { return null; }
    return union_.getResult();
  }

  @Override
  void reset() {
    union_ = null;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy