public enum ResponseContentType extends Enum<ResponseContentType>
| 枚举常量和说明 |
|---|
EXCEL_CONTENT_TYPE
application/vnd.ms-excel;charset=utf-8
|
PDF_CONTENT_TYPE
Http servlet response pdf content type
|
public static final ResponseContentType EXCEL_CONTENT_TYPE
public static final ResponseContentType PDF_CONTENT_TYPE
public static ResponseContentType[] values()
for (ResponseContentType c : ResponseContentType.values()) System.out.println(c);
public static ResponseContentType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2019. All rights reserved.