[]
Serializable, Comparable<CellAttribute>, ConstableThis enum is used with HtmlSaveOptions.getCellAttributeOptions() to configure which attributes are added to cell elements in the exported HTML.
workbook.getActiveSheet().getRange("B2").setValue("North");
HtmlSaveOptions options = new HtmlSaveOptions();
options.getCellAttributeOptions().put(CellAttribute.Address, "address");
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
workbook.save(outputStream, options);
Enum.EnumDesc<E extends Enum<E>>static CellAttributestatic CellAttribute[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null