public enum CellStyle extends Enum<CellStyle> implements AdditiveStyle
| Enum Constant and Description |
|---|
BORDERS_BOTTOM_DOUBLE |
BORDERS_BOTTOM_THIN |
BORDERS_THIN_ALL |
BORDERS_TOP_BOTTOM_THIN |
| Modifier and Type | Method and Description |
|---|---|
void |
enrich(org.apache.poi.hssf.usermodel.HSSFWorkbook workbook,
org.apache.poi.hssf.usermodel.HSSFCellStyle style) |
Enum<StyleType> |
getType() |
static CellStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CellStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellStyle BORDERS_THIN_ALL
public static final CellStyle BORDERS_BOTTOM_THIN
public static final CellStyle BORDERS_TOP_BOTTOM_THIN
public static final CellStyle BORDERS_BOTTOM_DOUBLE
public static CellStyle[] values()
for (CellStyle c : CellStyle.values()) System.out.println(c);
public static CellStyle valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic void enrich(org.apache.poi.hssf.usermodel.HSSFWorkbook workbook,
org.apache.poi.hssf.usermodel.HSSFCellStyle style)
public Enum<StyleType> getType()
getType in interface AdditiveStyleCopyright © 2014. All rights reserved.