@FunctionalInterface public interface StyleProcessor
int build(Object o, int style, Styles sst)
Styles#addXXX method before adding a style,
and then use the returned int value as the return value of the converter.
StyleProcessor sp = (o, style, sst) // Fill of 'yellow' color
-> style |= Styles.clearFill(style) | sst.addFill(new Fill(Color.yellow));
o - the value of cellstyle - the current style of cellsst - the Styles entryCopyright © 2020. All rights reserved.