Package io.keikai.model.impl
Class TableStyleInfoImpl
- java.lang.Object
-
- io.keikai.model.impl.AbstractTableStyleInfoAdv
-
- io.keikai.model.impl.TableStyleInfoImpl
-
- All Implemented Interfaces:
STableStyleInfo,java.io.Serializable,org.apache.poi.ss.usermodel.TableStyleInfo
public class TableStyleInfoImpl extends AbstractTableStyleInfoAdv
Table style- Since:
- 3.8.0
- Author:
- henri
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TableStyleInfoImpl(java.lang.String name, boolean showColumnStripes, boolean showRowStrips, boolean showFirstColumn, boolean showLastColumn)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()org.apache.poi.ss.usermodel.TableStylegetStyle()STableStylegetTableStyle(SBook book)Returns styles used in this TableStyleInfo associated with the specified book.booleanisShowColumnStripes()booleanisShowFirstColumn()booleanisShowLastColumn()booleanisShowRowStripes()voidsetName(java.lang.String name)voidsetShowColumnStripes(boolean b)voidsetShowFirstColumn(boolean b)voidsetShowLastColumn(boolean b)voidsetShowRowStripes(boolean b)
-
-
-
Method Detail
-
getName
public java.lang.String getName()
-
setName
public void setName(java.lang.String name)
-
isShowColumnStripes
public boolean isShowColumnStripes()
-
setShowColumnStripes
public void setShowColumnStripes(boolean b)
-
isShowRowStripes
public boolean isShowRowStripes()
-
setShowRowStripes
public void setShowRowStripes(boolean b)
-
isShowLastColumn
public boolean isShowLastColumn()
-
setShowLastColumn
public void setShowLastColumn(boolean b)
-
isShowFirstColumn
public boolean isShowFirstColumn()
-
setShowFirstColumn
public void setShowFirstColumn(boolean b)
-
getTableStyle
public STableStyle getTableStyle(SBook book)
Description copied from interface:STableStyleInfoReturns styles used in this TableStyleInfo associated with the specified book.- Returns:
-
getStyle
public org.apache.poi.ss.usermodel.TableStyle getStyle()
-
-