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

com.alipay.rdf.file.summary.BigDecimalSummaryPair Maven / Gradle / Ivy

There is a newer version: 2.2.11
Show newest version
package com.alipay.rdf.file.summary;

import java.math.BigDecimal;

/**
 * Copyright (C) 2013-2018 Ant Financial Services Group
 *
 * @author hongwei.quhw
 * @version $Id: BigDecimalSummaryPair.java, v 0.1 2018年3月12日 下午4:27:30 hongwei.quhw Exp $
 */
public class BigDecimalSummaryPair extends AbstractSummaryPair {

    @Override
    protected void doAddColValue(BigDecimal columnValue) {
        summaryValue = summaryValue.add(columnValue);
    }

    @Override
    public BigDecimal initDefaultColumnValue() {
        return new BigDecimal("0");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy