![JAR search and dependency download from the Maven repository](/logo.png)
com.tangosol.util.aggregator.BigDecimalSum Maven / Gradle / Ivy
/*
* Copyright (c) 2000, 2020, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
package com.tangosol.util.aggregator;
import com.tangosol.internal.util.aggregator.BigDecimalSerializationWrapper;
import com.tangosol.util.InvocableMap;
import com.tangosol.util.ValueExtractor;
import java.math.BigDecimal;
/**
* Calculates an sum for values of any numberic type extracted from a set of
* entries in a Map in a form of a {@link java.math.BigDecimal} value. All
* the extracted objects will be treated as {@link java.math.BigDecimal},
* {@link java.math.BigInteger} or Java double values.
* If the set of entries is empty, a null result is returned.
*
* @param the type of the value to extract from
*
* @author gg 2006.07.18
* @since Coherence 3.2
*/
public class BigDecimalSum
extends AbstractBigDecimalAggregator
{
// ----- constructors ---------------------------------------------------
/**
* Default constructor (necessary for the ExternalizableLite interface).
*/
public BigDecimalSum()
{
super();
}
/**
* Construct a BigDecimalSum aggregator.
*
* @param extractor the extractor that provides a value in the form of
* any Java object that is a {@link Number}
*/
public BigDecimalSum(ValueExtractor super T, ? extends Number> extractor)
{
super(extractor);
}
/**
* Construct an BigDecimalSum object.
*
* @param sMethod the name of the method that returns a value in the form
* of any Java object that is a {@link Number}
*/
public BigDecimalSum(String sMethod)
{
super(sMethod);
}
// ----- StreamingAggregator methods ------------------------------------
@Override
public InvocableMap.StreamingAggregator
© 2015 - 2025 Weber Informatics LLC | Privacy Policy