Package de.xima.fc.plugin.enums
Enum EPluginTypes
- java.lang.Object
-
- java.lang.Enum<EPluginTypes>
-
- de.xima.fc.plugin.enums.EPluginTypes
-
- All Implemented Interfaces:
Serializable
,Comparable<EPluginTypes>
@Deprecated public enum EPluginTypes extends Enum<EPluginTypes>
Deprecated.use the Sub-Interfaces ofIFCPlugin
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATASOURCE
Deprecated.FORM_ELEMENT_CATALOGUE
Deprecated.FORM_ELEMENT_WIDGET
Deprecated.FORM_PRE_PERSIST
Deprecated.FORM_PRE_PROCESS
Deprecated.FORM_PRE_RENDER
Deprecated.FORM_PRE_RESPOND
Deprecated.FORM_RESOURCE
Deprecated.GENERIC_ACTION
Deprecated.PORTAL
Deprecated.PRINTSERVICE
Deprecated.PROCESSING
Deprecated.PROJECT_TEMPLATE
Deprecated.REPLACER_FORM
Deprecated.REPLACER_SESSION
Deprecated.REPLACER_SYSTEM
Deprecated.REPLACER_TEMPLATE
Deprecated.SERVLET_ACTION
Deprecated.VALIDATION_RULE
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Class<? extends IFCPlugin>
getPluginInterface()
Deprecated.Getter für das Interfaze zu dem Plugin-Typstatic EPluginTypes
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static EPluginTypes[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERIC_ACTION
public static final EPluginTypes GENERIC_ACTION
Deprecated.
-
SERVLET_ACTION
public static final EPluginTypes SERVLET_ACTION
Deprecated.
-
PRINTSERVICE
public static final EPluginTypes PRINTSERVICE
Deprecated.
-
PROCESSING
public static final EPluginTypes PROCESSING
Deprecated.
-
DATASOURCE
public static final EPluginTypes DATASOURCE
Deprecated.
-
PROJECT_TEMPLATE
public static final EPluginTypes PROJECT_TEMPLATE
Deprecated.
-
REPLACER_SYSTEM
public static final EPluginTypes REPLACER_SYSTEM
Deprecated.
-
REPLACER_FORM
public static final EPluginTypes REPLACER_FORM
Deprecated.
-
REPLACER_TEMPLATE
public static final EPluginTypes REPLACER_TEMPLATE
Deprecated.
-
REPLACER_SESSION
public static final EPluginTypes REPLACER_SESSION
Deprecated.
-
FORM_PRE_RENDER
public static final EPluginTypes FORM_PRE_RENDER
Deprecated.
-
FORM_PRE_PERSIST
public static final EPluginTypes FORM_PRE_PERSIST
Deprecated.
-
FORM_PRE_PROCESS
public static final EPluginTypes FORM_PRE_PROCESS
Deprecated.
-
FORM_PRE_RESPOND
public static final EPluginTypes FORM_PRE_RESPOND
Deprecated.
-
VALIDATION_RULE
public static final EPluginTypes VALIDATION_RULE
Deprecated.
-
FORM_RESOURCE
public static final EPluginTypes FORM_RESOURCE
Deprecated.
-
FORM_ELEMENT_CATALOGUE
public static final EPluginTypes FORM_ELEMENT_CATALOGUE
Deprecated.
-
FORM_ELEMENT_WIDGET
public static final EPluginTypes FORM_ELEMENT_WIDGET
Deprecated.
-
PORTAL
public static final EPluginTypes PORTAL
Deprecated.
-
-
Method Detail
-
values
public static EPluginTypes[] values()
Deprecated.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 (EPluginTypes c : EPluginTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EPluginTypes valueOf(String name)
Deprecated.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
-
-