接口/枚举列出了标准的mime类型常量
问题内容:
我正在标准库(例如apache commons,jax,jboss,javax)中寻找一个列出所有标准mime类型(aka content-
type)值的接口或枚举。
该接口不应被其他类所困扰,否则将很难将整个类作为gwt源代码包含在内。
例如
interface ContentType{
String JSON = "Application/JSON";
blah ... blah ...
}
要么,
enum ContentType{
JSON("Application/JSON"),
blah ... blah ...
}
问题答案: