Package thredds.util
Enum ContentType
- java.lang.Object
-
- java.lang.Enum<ContentType>
-
- thredds.util.ContentType
-
- All Implemented Interfaces:
Serializable,Comparable<ContentType>
public enum ContentType extends Enum<ContentType>
Content Types (MIME types)- Since:
- 10/20/13
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ContentTypefindContentTypeFromFilename(String filename)StringgetContentHeader()StringtoString()static ContentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ContentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
binary
public static final ContentType binary
-
csv
public static final ContentType csv
-
html
public static final ContentType html
-
jnlp
public static final ContentType jnlp
-
json
public static final ContentType json
-
ncstream
public static final ContentType ncstream
-
netcdf
public static final ContentType netcdf
-
ogc_exception
public static final ContentType ogc_exception
-
png
public static final ContentType png
-
text
public static final ContentType text
-
xml
public static final ContentType xml
-
xmlwms
public static final ContentType xmlwms
-
-
Field Detail
-
HEADER
public static final String HEADER
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static ContentType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ContentType c : ContentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContentType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
findContentTypeFromFilename
public static ContentType findContentTypeFromFilename(String filename)
-
toString
public String toString()
- Overrides:
toStringin classEnum<ContentType>
-
getContentHeader
public String getContentHeader()
-
-