dangsn
2024-11-14 6284dcac25ffb84fa2f6a9007a36655856e24e46
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.vci.starter.poi.constant;
 
/**
 * excel相关操作的多语言的代码
 * @author weidy
 * @date 2020/5/5
 */
public class ExcelLangCodeConstant {
    /**
     * 读取导入的文件出错
     */
    public static final String READ_IMPORT_FILE_FAIL = "readImportFileFail";
 
    /**
     * 导入的文件内容为空
     */
    public static final String IMPORT_CONTENT_NULL = "importContentNull";
 
    /**
     * 文件不存在
     */
    public static final String FILE_NOT_FOUND = "fileNotFound";
 
    /**
     * 文件写入错误
     */
    public static final String FILE_IO_EXCEPTION = "fileIoException";
 
    /**
     * 文件创建异常
     */
    public static final String FILE_CREATE_EXCEPTION = "fileCreateException";
 
    /**
     * 输入流是空
     */
    public static final String INPUT_STREAM_IS_NULL = "inputStreamIsNull";
 
    /**
     * 输出流是空
     */
    public static final String OUTPUT_STREAM_IS_NULL = "outputStreamIsNull";
 
    /**
     * 工作簿初始化失败
     */
    public static final String WORKBOOK_INIT_FAIL = "workBookInitFail";
 
    /**
     * 单元格的值不能为空
     */
    public static final String CELL_VALUE_CAN_NOT_NULL = "cellValueCanNotNull";
 
    /**
     * 因为要校验正则表达式,所以单元格的值不能为空
     */
    public static final String CELL_VALUE_CAN_NOT_NULL_FOR_REG = "cellValueCanNotNullForReg";
 
    /**
     * 单元格的值不符合正则表达式的要求
     */
    public static final String CELL_VALUE_NOT_EQUAL_REG = "cellValueNotEqualReg";
 
    /**
     * 单元格不是有效的时间格式
     */
    public static final String CELL_NOT_DATE_FORMATE = "cellNotDateFormate";
}