엑셀 통계 테스트
parent
b0f5354c03
commit
93575a9499
@ -0,0 +1,16 @@
|
||||
package cokr.xit.adds.cmmn.xls;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
import cokr.xit.base.docs.xls.Format;
|
||||
|
||||
public class FormatMaker {
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public static Format a_slash_ab(Format format, String a, String b) {
|
||||
return format.of(a).value(o -> {
|
||||
return ((Map) o).get(a) + " / " + ((Map) o).get(a+b);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue