@FunctionalInterface public interface StyleProcessor<T>
| 限定符和类型 | 接口和说明 |
|---|---|
static class |
StyleProcessor.None
None processor
|
int build(T 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 © 2022. All rights reserved.