28293031323334
public class ErrorCell extends StyledCell { private final Byte errorCode; public ErrorCell(Byte text) { this(text, new NoStyle()); }
public class FormulaCell extends StyledCell { private final String formula; public FormulaCell(String formula) { this(formula, new NoStyle()); }
import static org.apache.poi.ss.usermodel.Cell.CELL_TYPE_BLANK; public class BlankCell extends StyledCell { public BlankCell() { this(new NoStyle()); }
public class DoubleCell extends StyledCell { private final Double number; public DoubleCell(Double number) { this(number, new NoStyle()); }
33343536373839
public static StyledRowBuilder aRowWithDefaultStyle(Style defaultStyle) { return new DefaultStyledRowBuilder(defaultStyle); } public static StyledRowBuilder aRow() { return new DefaultStyledRowBuilder(new NoStyle()); }
27282930313233
public class StringCell extends StyledCell { private final String text; public StringCell(String text) { this(text, new NoStyle()); }
public class BooleanCell extends StyledCell { private final Boolean value; public BooleanCell(Boolean value) { this(value, new NoStyle()); }
36373839404142
private final String text; private final URL link; public HyperlinkCell(String text, URL link) { this(text, link, new NoStyle()); }
31323334353637
public class DateCell extends StyledCell { private final Date date; public DateCell(Date date) { this(date, new NoStyle()); }