Package de.xima.fc.mdl.enums
Enum EFormTyp
- java.lang.Object
-
- java.lang.Enum<EFormTyp>
-
- de.xima.fc.mdl.enums.EFormTyp
-
- All Implemented Interfaces:
INamedUiElement
,Serializable
,Comparable<EFormTyp>
public enum EFormTyp extends Enum<EFormTyp> implements INamedUiElement
Von Formcycle unterstützte Formulartypen.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HTTP_REQUEST
Deprecated.XIMA_FD2
mit dem neuen 'xima Forms WEB Designer' erstellte und auf den Formcycle Server veröffentlichte FormulareXIMA_FORM
Deprecated.
-
Field Summary
-
Fields inherited from interface de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAME
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDisplayName(Locale l)
The display name of this element in the given locale.static EFormTyp
valueOf(String name)
Returns the enum constant of this type with the specified name.static EFormTyp[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XIMA_FORM
@Deprecated public static final EFormTyp XIMA_FORM
Deprecated.
-
HTTP_REQUEST
@Deprecated public static final EFormTyp HTTP_REQUEST
Deprecated.beliebige Formulare, die ihre Daten via HTTP-Request an Formcycle übergeben
-
XIMA_FD2
public static final EFormTyp XIMA_FD2
mit dem neuen 'xima Forms WEB Designer' erstellte und auf den Formcycle Server veröffentlichte Formulare
-
-
Method Detail
-
values
public static EFormTyp[] 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 (EFormTyp c : EFormTyp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EFormTyp 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
-
getDisplayName
public String getDisplayName(Locale l)
The display name of this element in the given locale.- Specified by:
getDisplayName
in interfaceINamedUiElement
- Parameters:
l
- The locale to get the display name for.- Returns:
- The display name of this element in the given locale.
-
-