Enum Messages.Deserializer
- java.lang.Object
-
- java.lang.Enum<Messages.Deserializer>
-
- de.codecentric.reedelk.platform.commons.Messages.Deserializer
-
- All Implemented Interfaces:
de.codecentric.reedelk.runtime.api.commons.FormattedMessage,Serializable,Comparable<Messages.Deserializer>
- Enclosing class:
- Messages
public static enum Messages.Deserializer extends Enum<Messages.Deserializer> implements de.codecentric.reedelk.runtime.api.commons.FormattedMessage
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONFIGURATION_NOT_FOUNDERROR_COMPONENT_NOT_FOUNDERROR_READING_FILES_FROM_RESOURCE_FOLDERSCRIPT_SOURCE_EMPTYSCRIPT_SOURCE_NOT_FOUNDUNSUPPORTED_COLLECTION_TYPE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringtemplate()static Messages.DeserializervalueOf(String name)Returns the enum constant of this type with the specified name.static Messages.Deserializer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSUPPORTED_COLLECTION_TYPE
public static final Messages.Deserializer UNSUPPORTED_COLLECTION_TYPE
-
CONFIGURATION_NOT_FOUND
public static final Messages.Deserializer CONFIGURATION_NOT_FOUND
-
ERROR_READING_FILES_FROM_RESOURCE_FOLDER
public static final Messages.Deserializer ERROR_READING_FILES_FROM_RESOURCE_FOLDER
-
ERROR_COMPONENT_NOT_FOUND
public static final Messages.Deserializer ERROR_COMPONENT_NOT_FOUND
-
SCRIPT_SOURCE_NOT_FOUND
public static final Messages.Deserializer SCRIPT_SOURCE_NOT_FOUND
-
SCRIPT_SOURCE_EMPTY
public static final Messages.Deserializer SCRIPT_SOURCE_EMPTY
-
-
Method Detail
-
values
public static Messages.Deserializer[] 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 (Messages.Deserializer c : Messages.Deserializer.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Messages.Deserializer 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
-
template
public String template()
- Specified by:
templatein interfacede.codecentric.reedelk.runtime.api.commons.FormattedMessage
-
-