package com.eda.test.common; /** * 文件类型枚举 * @author Lanxiaowei * @createTime 2012-6-22 下午05:06:11 */ public enum FileType { WORD2003 { public String getValue(){ return "Word-2003文档"; } public String getStuffix(){ return "doc"; } }, EXCEL2003 { public String getValue(){ return "Excel-2003文档"; } public String getStuffix(){ return "xls"; } }, PPT2003 { public String getValue(){ return "PPT-2003文档"; } public String getStuffix(){ return "ppt"; } }, WORD2007 { public String getValue(){ return "Word-2007文档"; } public String getStuffix(){ return "docx"; } }, EXCEL2007 { public String getValue(){ return "Excel-2007文档"; } public String getStuffix(){ return "xlsx"; } }, PPT2007 { public String getValue(){ return "PPT-2007文档"; } public String getStuffix(){ return "pptx"; } }, TXT { public String getValue(){ return "记事本文档"; } public String getStuffix(){ return "txt"; } }; public abstract String getValue(); public abstract String getStuffix(); }

新哥新奇士橙 LV5
8月11日
东北虎啸 LV3
2023年2月22日
49202046 LV7
2022年8月2日
Comedian LV3
2022年7月19日
dududufeidad LV9
2021年10月27日
yiyun0014 LV4
2021年5月7日
and123456 LV11
2021年4月20日
幻羽揚 LV4
2021年1月3日
2235140624 LV17
2020年11月24日
liujun0104 LV5
2020年11月8日