com.alibaba.excel.metadata.Font Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easyexcel Show documentation
Show all versions of easyexcel Show documentation
easyexcel is a excel handle tools written in Java
package com.alibaba.excel.metadata;
/**
*
* @author jipengfei
* @deprecated please use {@link com.alibaba.excel.write.metadata.style.WriteFont}
*/
@Deprecated
public class Font {
/**
*/
private String fontName;
/**
*/
private short fontHeightInPoints;
/**
*/
private boolean bold;
public String getFontName() {
return fontName;
}
public void setFontName(String fontName) {
this.fontName = fontName;
}
public short getFontHeightInPoints() {
return fontHeightInPoints;
}
public void setFontHeightInPoints(short fontHeightInPoints) {
this.fontHeightInPoints = fontHeightInPoints;
}
public boolean isBold() {
return bold;
}
public void setBold(boolean bold) {
this.bold = bold;
}
}