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 java.lang.Object implements TableStyleInfo
Wrapper for the CT class, to cache values and add style lookup
-
-
Constructor Summary
Constructors Constructor Description XSSFTableStyleInfo(StylesTable stylesTable, CTTableStyleInfo tableStyleInfo)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()TableStylegetStyle()booleanisShowColumnStripes()booleanisShowFirstColumn()booleanisShowLastColumn()booleanisShowRowStripes()voidsetFirstColumn(boolean showFirstColumn)voidsetLastColumn(boolean showLastColumn)voidsetName(java.lang.String name)voidsetShowColumnStripes(boolean show)voidsetShowRowStripes(boolean show)
-
-
-
Constructor Detail
-
XSSFTableStyleInfo
public XSSFTableStyleInfo(StylesTable stylesTable, CTTableStyleInfo tableStyleInfo)
- Parameters:
stylesTable-tableStyleInfo-
-
-
Method Detail
-
isShowColumnStripes
public boolean isShowColumnStripes()
- Specified by:
isShowColumnStripesin interfaceTableStyleInfo- Returns:
- true if alternating column styles should be applied
-
setShowColumnStripes
public void setShowColumnStripes(boolean show)
-
isShowRowStripes
public boolean isShowRowStripes()
- Specified by:
isShowRowStripesin interfaceTableStyleInfo- Returns:
- true if alternating row styles should be applied
-
setShowRowStripes
public void setShowRowStripes(boolean show)
-
isShowFirstColumn
public boolean isShowFirstColumn()
- Specified by:
isShowFirstColumnin interfaceTableStyleInfo- Returns:
- true if the distinct first column style should be applied
-
setFirstColumn
public void setFirstColumn(boolean showFirstColumn)
-
isShowLastColumn
public boolean isShowLastColumn()
- Specified by:
isShowLastColumnin interfaceTableStyleInfo- Returns:
- true if the distinct last column style should be applied
-
setLastColumn
public void setLastColumn(boolean showLastColumn)
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceTableStyleInfo- Returns:
- the name of the style (may reference a built-in style)
-
setName
public void setName(java.lang.String name)
-
getStyle
public TableStyle getStyle()
- Specified by:
getStylein interfaceTableStyleInfo- Returns:
- style definition
-
-