com.thomas.alib.excel.enums.SEBorderStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-excel Show documentation
Show all versions of simple-excel Show documentation
简单excel导入导出工具,基于Apache.poi实现,通过注解方式实现poi常用api的调用
The newest version!
package com.thomas.alib.excel.enums;
/**
* 边框类型
*/
public enum SEBorderStyle {
NOT_SET,//不设置
NONE,//无
THIN,//细线
MEDIUM,//粗一点的线
DASHED,//细虚线
THICK,//更粗的线
DOUBLE,//双划线
MEDIUM_DASHED,//粗一点的虚线
DASH_DOT,//一长一短的虚线
MEDIUM_DASH_DOT,//粗一点的一长一短的虚线
DASH_DOT_DOT,//一长两短的虚线
MEDIUM_DASH_DOT_DOT,//粗一点的一长两短的虚线
SLANTED_DASH_DOT,//斜画的一长一短的虚线
}