Enum Messages.Module
- java.lang.Object
-
- java.lang.Enum<Messages.Module>
-
- de.codecentric.reedelk.platform.commons.Messages.Module
-
- All Implemented Interfaces:
de.codecentric.reedelk.runtime.api.commons.FormattedMessage,Serializable,Comparable<Messages.Module>
- Enclosing class:
- Messages
public static enum Messages.Module extends Enum<Messages.Module> implements de.codecentric.reedelk.runtime.api.commons.FormattedMessage
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringtemplate()static Messages.ModulevalueOf(String name)Returns the enum constant of this type with the specified name.static Messages.Module[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LICENSE_ONLY_MODULE
public static final Messages.Module LICENSE_ONLY_MODULE
-
FILE_FIND_IO_ERROR
public static final Messages.Module FILE_FIND_IO_ERROR
-
START_FAILED
public static final Messages.Module START_FAILED
-
INSTALL_SUCCESS
public static final Messages.Module INSTALL_SUCCESS
-
INSTALL_FAILED
public static final Messages.Module INSTALL_FAILED
-
INSTALL_FAILED_MODULE_NOT_VALID
public static final Messages.Module INSTALL_FAILED_MODULE_NOT_VALID
-
INSTALL_FAILED_MODULE_ALREADY_INSTALLED
public static final Messages.Module INSTALL_FAILED_MODULE_ALREADY_INSTALLED
-
INSTALL_FAILED_MODULE_NAME_NOT_FOUND
public static final Messages.Module INSTALL_FAILED_MODULE_NAME_NOT_FOUND
-
INSTALL_MODULE_DIFFERENT_VERSION_PRESENT
public static final Messages.Module INSTALL_MODULE_DIFFERENT_VERSION_PRESENT
-
UNINSTALL_SUCCESS
public static final Messages.Module UNINSTALL_SUCCESS
-
UPDATE_SUCCESS
public static final Messages.Module UPDATE_SUCCESS
-
UPDATE_FAILED_MODULE_NOT_FOUND
public static final Messages.Module UPDATE_FAILED_MODULE_NOT_FOUND
-
START_SUCCESS
public static final Messages.Module START_SUCCESS
-
REMOVE_MODULE_FROM_DIRECTORY_ERROR
public static final Messages.Module REMOVE_MODULE_FROM_DIRECTORY_ERROR
-
REMOVE_MODULE_FROM_DIRECTORY_EXCEPTION
public static final Messages.Module REMOVE_MODULE_FROM_DIRECTORY_EXCEPTION
-
REMOVE_FILE_NOT_SUCCESSFUL
public static final Messages.Module REMOVE_FILE_NOT_SUCCESSFUL
-
-
Method Detail
-
values
public static Messages.Module[] 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.Module c : Messages.Module.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.Module 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
-
-