org.jxls.functions.Summarizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-core Show documentation
Show all versions of jxls-core Show documentation
Small library for Excel generation based on XLS templates
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();
}