This commit is contained in:
Looly
2023-03-13 05:04:50 +08:00
parent 5b559d19bd
commit 48eec2a8ae
92 changed files with 1487 additions and 651 deletions

View File

@@ -2,10 +2,21 @@ package cn.hutool.poi.excel.style;
/**
* 对齐方式枚举
*
*
* @author looly
* @since 4.1.0
*/
public enum Align {
LEFT, RIGHT, CENTER
/**
* 左对齐
*/
LEFT,
/**
* 右对齐
*/
RIGHT,
/**
* 居中
*/
CENTER
}