Enum Messages.Analyzer
- java.lang.Object
-
- java.lang.Enum<Messages.Analyzer>
-
- de.codecentric.reedelk.module.descriptor.analyzer.commons.Messages.Analyzer
-
- All Implemented Interfaces:
de.codecentric.reedelk.runtime.api.commons.FormattedMessage,Serializable,Comparable<Messages.Analyzer>
- Enclosing class:
- Messages
public static enum Messages.Analyzer extends Enum<Messages.Analyzer> implements de.codecentric.reedelk.runtime.api.commons.FormattedMessage
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERROR_FROM_DIRECTORYERROR_FROM_JAR_PATHERROR_SCAN_API_TYPES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringtemplate()static Messages.AnalyzervalueOf(String name)Returns the enum constant of this type with the specified name.static Messages.Analyzer[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ERROR_FROM_JAR_PATH
public static final Messages.Analyzer ERROR_FROM_JAR_PATH
-
ERROR_FROM_DIRECTORY
public static final Messages.Analyzer ERROR_FROM_DIRECTORY
-
ERROR_SCAN_API_TYPES
public static final Messages.Analyzer ERROR_SCAN_API_TYPES
-
-
Method Detail
-
values
public static Messages.Analyzer[] 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.Analyzer c : Messages.Analyzer.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.Analyzer 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
-
-