Enum VersionDependentComponentType
- java.lang.Object
-
- java.lang.Enum<VersionDependentComponentType>
-
- eu.europa.ted.eforms.sdk.selector.component.VersionDependentComponentType
-
- All Implemented Interfaces:
Serializable,Comparable<VersionDependentComponentType>
public enum VersionDependentComponentType extends Enum<VersionDependentComponentType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CODELISTEFX_EXPRESSION_TRANSLATOREFX_TEMPLATE_TRANSLATORFIELDMARKUP_GENERATORNODESCRIPT_GENERATORSYMBOL_RESOLVER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VersionDependentComponentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static VersionDependentComponentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIELD
public static final VersionDependentComponentType FIELD
-
NODE
public static final VersionDependentComponentType NODE
-
CODELIST
public static final VersionDependentComponentType CODELIST
-
EFX_EXPRESSION_TRANSLATOR
public static final VersionDependentComponentType EFX_EXPRESSION_TRANSLATOR
-
EFX_TEMPLATE_TRANSLATOR
public static final VersionDependentComponentType EFX_TEMPLATE_TRANSLATOR
-
SYMBOL_RESOLVER
public static final VersionDependentComponentType SYMBOL_RESOLVER
-
SCRIPT_GENERATOR
public static final VersionDependentComponentType SCRIPT_GENERATOR
-
MARKUP_GENERATOR
public static final VersionDependentComponentType MARKUP_GENERATOR
-
-
Method Detail
-
values
public static VersionDependentComponentType[] 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 (VersionDependentComponentType c : VersionDependentComponentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VersionDependentComponentType 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
-
-