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