public enum ExportHandleErrorInfo extends Enum<ExportHandleErrorInfo> implements top.lshaci.framework.common.constants.ErrorInfo
| 枚举常量和说明 |
|---|
entity_is_null
导出对象类型不能为空
|
failure
导出Excel工作簿时发生错误
|
not_collection
使用ExportTitle注解标记的字段不是集合类型
|
not_excel_entity
导出实体未使用ExcelEntity注解标记
|
only_one_collection
导出实体类仅允许标记一个集合类型字段
|
public static final ExportHandleErrorInfo entity_is_null
public static final ExportHandleErrorInfo not_excel_entity
public static final ExportHandleErrorInfo only_one_collection
public static final ExportHandleErrorInfo not_collection
public static final ExportHandleErrorInfo failure
public static ExportHandleErrorInfo[] values()
for (ExportHandleErrorInfo c : ExportHandleErrorInfo.values()) System.out.println(c);
public static ExportHandleErrorInfo valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.