Package org.apache.poi.xssf.usermodel
Class XSSFTableStyleInfo
- java.lang.Object
-
- org.apache.poi.xssf.usermodel.XSSFTableStyleInfo
-
- All Implemented Interfaces:
TableStyleInfo
public class XSSFTableStyleInfo extends Object implements TableStyleInfo
Wrapper for the CT class, to cache values and add style lookup
-
-
Constructor Summary
Constructors Constructor Description XSSFTableStyleInfo(StylesTable stylesTable, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableStyleInfo tableStyleInfo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()TableStylegetStyle()booleanisShowColumnStripes()booleanisShowFirstColumn()booleanisShowLastColumn()booleanisShowRowStripes()voidsetFirstColumn(boolean showFirstColumn)voidsetLastColumn(boolean showLastColumn)voidsetName(String name)voidsetShowColumnStripes(boolean show)voidsetShowRowStripes(boolean show)
-
-
-
Constructor Detail
-
XSSFTableStyleInfo
public XSSFTableStyleInfo(StylesTable stylesTable, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableStyleInfo tableStyleInfo)
-
-
Method Detail
-
isShowColumnStripes
public boolean isShowColumnStripes()
- Specified by:
isShowColumnStripesin interfaceTableStyleInfo
-
setShowColumnStripes
public void setShowColumnStripes(boolean show)
-
isShowRowStripes
public boolean isShowRowStripes()
- Specified by:
isShowRowStripesin interfaceTableStyleInfo
-
setShowRowStripes
public void setShowRowStripes(boolean show)
-
isShowFirstColumn
public boolean isShowFirstColumn()
- Specified by:
isShowFirstColumnin interfaceTableStyleInfo
-
setFirstColumn
public void setFirstColumn(boolean showFirstColumn)
-
isShowLastColumn
public boolean isShowLastColumn()
- Specified by:
isShowLastColumnin interfaceTableStyleInfo
-
setLastColumn
public void setLastColumn(boolean showLastColumn)
-
getName
public String getName()
- Specified by:
getNamein interfaceTableStyleInfo
-
setName
public void setName(String name)
-
getStyle
public TableStyle getStyle()
- Specified by:
getStylein interfaceTableStyleInfo
-
-