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

org.jxls.functions.Summarizer Maven / Gradle / Ivy

The newest version!
package org.jxls.functions;

public interface Summarizer {
    
    /**
     * Casts number to type T and adds value to sum if number not null.
     * @param number a number to add
     */
    void add(Object number);
    
    /**
     * @return sum of type T
     */
    T getSum();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy