Enum ErrorDictionary
- java.lang.Object
-
- java.lang.Enum<ErrorDictionary>
-
- org.talend.sdk.component.server.front.model.ErrorDictionary
-
- All Implemented Interfaces:
Serializable,Comparable<ErrorDictionary>
public enum ErrorDictionary extends Enum<ErrorDictionary>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTION_ERRORACTION_MISSINGBAD_FORMATCOMPONENT_MISSINGCONFIGURATION_MISSINGDESIGN_MODEL_MISSINGFAMILY_MISSINGICON_MISSINGPLUGIN_MISSINGUNAUTHORIZEDUNEXPECTED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorDictionaryvalueOf(String name)Returns the enum constant of this type with the specified name.static ErrorDictionary[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLUGIN_MISSING
public static final ErrorDictionary PLUGIN_MISSING
-
FAMILY_MISSING
public static final ErrorDictionary FAMILY_MISSING
-
COMPONENT_MISSING
public static final ErrorDictionary COMPONENT_MISSING
-
CONFIGURATION_MISSING
public static final ErrorDictionary CONFIGURATION_MISSING
-
ICON_MISSING
public static final ErrorDictionary ICON_MISSING
-
ACTION_MISSING
public static final ErrorDictionary ACTION_MISSING
-
ACTION_ERROR
public static final ErrorDictionary ACTION_ERROR
-
BAD_FORMAT
public static final ErrorDictionary BAD_FORMAT
-
DESIGN_MODEL_MISSING
public static final ErrorDictionary DESIGN_MODEL_MISSING
-
UNEXPECTED
public static final ErrorDictionary UNEXPECTED
-
UNAUTHORIZED
public static final ErrorDictionary UNAUTHORIZED
-
-
Method Detail
-
values
public static ErrorDictionary[] 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 (ErrorDictionary c : ErrorDictionary.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ErrorDictionary 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
-
-