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 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 ObjectconvertFormValueToModelValue(Object propertyValue)Deprecated.abstract StringconvertModelValueToFormValue(Object modelValue)Deprecated.abstract org.camunda.bpm.engine.variable.value.TypedValueconvertToFormValue(org.camunda.bpm.engine.variable.value.TypedValue propertyValue)abstract org.camunda.bpm.engine.variable.value.TypedValueconvertToModelValue(org.camunda.bpm.engine.variable.value.TypedValue propertyValue)ObjectgetInformation(String key)Retrieve type specific extra information like the list of values for enum types or the format for date types.abstract StringgetName()Name for the form type.
-
-
-
Method Detail
-
getName
public abstract String getName()
Description copied from interface:FormTypeName for the form type.
-
convertToFormValue
public abstract org.camunda.bpm.engine.variable.value.TypedValue convertToFormValue(org.camunda.bpm.engine.variable.value.TypedValue propertyValue)
-
convertToModelValue
public abstract org.camunda.bpm.engine.variable.value.TypedValue convertToModelValue(org.camunda.bpm.engine.variable.value.TypedValue propertyValue)
-
convertFormValueToModelValue
@Deprecated public abstract Object convertFormValueToModelValue(Object propertyValue)
Deprecated.
-
convertModelValueToFormValue
@Deprecated public abstract String convertModelValueToFormValue(Object modelValue)
Deprecated.
-
getInformation
public Object getInformation(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
-
-