Package io.milton.http
Enum Response.ContentType
- java.lang.Object
-
- java.lang.Enum<Response.ContentType>
-
- io.milton.http.Response.ContentType
-
- All Implemented Interfaces:
Serializable,Comparable<Response.ContentType>
- Enclosing interface:
- Response
public static enum Response.ContentType extends Enum<Response.ContentType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Response.ContentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Response.ContentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HTTP
public static final Response.ContentType HTTP
-
MULTIPART
public static final Response.ContentType MULTIPART
-
IMAGE_JPG
public static final Response.ContentType IMAGE_JPG
-
XML
public static final Response.ContentType XML
-
-
Method Detail
-
values
public static Response.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 (Response.ContentType c : Response.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 Response.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
-
-