Class AbstractFormFieldType
- java.lang.Object
-
- org.camunda.bpm.engine.impl.form.type.AbstractFormFieldType
-
- All Implemented Interfaces:
FormType
- Direct Known Subclasses:
DateFormType,SimpleFormFieldType
public abstract class AbstractFormFieldType extends java.lang.Object implements FormType
- Author:
- Tom Baeyens, Daniel Meyer
-
-
Constructor Summary
Constructors Constructor Description AbstractFormFieldType()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description abstract java.lang.ObjectconvertFormValueToModelValue(java.lang.Object propertyValue)Deprecated.abstract java.lang.StringconvertModelValueToFormValue(java.lang.Object modelValue)Deprecated.abstract TypedValueconvertToFormValue(TypedValue propertyValue)abstract TypedValueconvertToModelValue(TypedValue propertyValue)java.lang.ObjectgetInformation(java.lang.String key)Retrieve type specific extra information like the list of values for enum types or the format for date types.abstract java.lang.StringgetName()Name for the form type.
-
-
-
Method Detail
-
getName
public abstract java.lang.String getName()
Description copied from interface:FormTypeName for the form type.
-
convertToFormValue
public abstract TypedValue convertToFormValue(TypedValue propertyValue)
-
convertToModelValue
public abstract TypedValue convertToModelValue(TypedValue propertyValue)
-
convertFormValueToModelValue
@Deprecated public abstract java.lang.Object convertFormValueToModelValue(java.lang.Object propertyValue)
Deprecated.
-
convertModelValueToFormValue
@Deprecated public abstract java.lang.String convertModelValueToFormValue(java.lang.Object modelValue)
Deprecated.
-
getInformation
public java.lang.Object getInformation(java.lang.String key)
Description copied from interface:FormTypeRetrieve type specific extra information like the list of values for enum types or the format for date types. Look in the userguide for which extra information keys each type provides and what return type they give.- Specified by:
getInformationin interfaceFormType
-
-