Enum ContentTypeEnum
- java.lang.Object
-
- java.lang.Enum<ContentTypeEnum>
-
- io.lippia.api.configuration.enums.ContentTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ContentTypeEnum>
public enum ContentTypeEnum extends java.lang.Enum<ContentTypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION_XMLJAVASCRIPTJSONTEXT_HTMLTEXT_PLAINTEXT_XMLURL_PARAMETER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ContentTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ContentTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JSON
public static final ContentTypeEnum JSON
-
APPLICATION_XML
public static final ContentTypeEnum APPLICATION_XML
-
TEXT_XML
public static final ContentTypeEnum TEXT_XML
-
URL_PARAMETER
public static final ContentTypeEnum URL_PARAMETER
-
TEXT_PLAIN
public static final ContentTypeEnum TEXT_PLAIN
-
JAVASCRIPT
public static final ContentTypeEnum JAVASCRIPT
-
TEXT_HTML
public static final ContentTypeEnum TEXT_HTML
-
-
Method Detail
-
values
public static ContentTypeEnum[] 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 (ContentTypeEnum c : ContentTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContentTypeEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-