org.apache.datasketches.tuple.adouble.DoubleSummaryFactory Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.datasketches.tuple.adouble;
import org.apache.datasketches.tuple.SummaryFactory;
/**
* Factory for DoubleSummary. It supports three modes of operation of DoubleSummary:
* Sum, Min and Max.
*/
public final class DoubleSummaryFactory implements SummaryFactory {
private final DoubleSummary.Mode summaryMode_;
/**
* Creates an instance of DoubleSummaryFactory with default mode
*/
public DoubleSummaryFactory() {
summaryMode_ = DoubleSummary.Mode.Sum;
}
/**
* Creates an instance of DoubleSummaryFactory with a given mode
* @param summaryMode summary mode
*/
public DoubleSummaryFactory(final DoubleSummary.Mode summaryMode) {
summaryMode_ = summaryMode;
}
@Override
public DoubleSummary newSummary() {
return new DoubleSummary(summaryMode_);
}
//private static final int SERIALIZED_SIZE_BYTES = 1;
//private static final int MODE_BYTE = 0;
/*
* This is deprecated and exists here just to test compatibility with previous serialization format.
* In the current serial version of sketches factories are not serialized.
* Creates an instance of the DoubleSummaryFactory given a serialized representation
* @param mem Memory object with serialized DoubleSummaryFactory
* @return DeserializedResult object, which contains a DoubleSummaryFactory object and number of
* bytes read from the Memory
*/
// public static DeserializeResult fromMemory(final Memory mem) {
// return new DeserializeResult(
// new DoubleSummaryFactory(Mode.values()[mem.getByte(MODE_BYTE)]), SERIALIZED_SIZE_BYTES);
// }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy