Class SimpleFormFieldType
- java.lang.Object
-
- org.camunda.bpm.engine.impl.form.type.AbstractFormFieldType
-
- org.camunda.bpm.engine.impl.form.type.SimpleFormFieldType
-
- All Implemented Interfaces:
FormType
- Direct Known Subclasses:
BooleanFormType
,EnumFormType
,LongFormType
,StringFormType
public abstract class SimpleFormFieldType extends AbstractFormFieldType
The SimpleFormFieldType can be used when the form value and the model value are equal.- Author:
- Daniel Meyer
-
-
Constructor Summary
Constructors Constructor Description SimpleFormFieldType()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description TypedValue
convertToFormValue(TypedValue propertyValue)
TypedValue
convertToModelValue(TypedValue propertyValue)
protected abstract TypedValue
convertValue(TypedValue propertyValue)
-
Methods inherited from class org.camunda.bpm.engine.impl.form.type.AbstractFormFieldType
convertFormValueToModelValue, convertModelValueToFormValue, getInformation, getName
-
-
-
-
Method Detail
-
convertToFormValue
public TypedValue convertToFormValue(TypedValue propertyValue)
- Specified by:
convertToFormValue
in classAbstractFormFieldType
-
convertToModelValue
public TypedValue convertToModelValue(TypedValue propertyValue)
- Specified by:
convertToModelValue
in classAbstractFormFieldType
-
convertValue
protected abstract TypedValue convertValue(TypedValue propertyValue)
-
-