Class BooleanFormType
- java.lang.Object
-
- org.camunda.bpm.engine.impl.form.type.AbstractFormFieldType
-
- org.camunda.bpm.engine.impl.form.type.SimpleFormFieldType
-
- org.camunda.bpm.engine.impl.form.type.BooleanFormType
-
- All Implemented Interfaces:
FormType
public class BooleanFormType extends SimpleFormFieldType
- Author:
- Frederik Heremans
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
TYPE_NAME
-
Constructor Summary
Constructors Constructor Description BooleanFormType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
convertFormValueToModelValue(java.lang.Object propertyValue)
java.lang.String
convertModelValueToFormValue(java.lang.Object modelValue)
TypedValue
convertValue(TypedValue propertyValue)
java.lang.String
getName()
Name for the form type.-
Methods inherited from class org.camunda.bpm.engine.impl.form.type.SimpleFormFieldType
convertToFormValue, convertToModelValue
-
Methods inherited from class org.camunda.bpm.engine.impl.form.type.AbstractFormFieldType
getInformation
-
-
-
-
Field Detail
-
TYPE_NAME
public static final java.lang.String TYPE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:FormType
Name for the form type.- Specified by:
getName
in interfaceFormType
- Specified by:
getName
in classAbstractFormFieldType
-
convertValue
public TypedValue convertValue(TypedValue propertyValue)
- Specified by:
convertValue
in classSimpleFormFieldType
-
convertFormValueToModelValue
public java.lang.Object convertFormValueToModelValue(java.lang.Object propertyValue)
- Specified by:
convertFormValueToModelValue
in classAbstractFormFieldType
-
convertModelValueToFormValue
public java.lang.String convertModelValueToFormValue(java.lang.Object modelValue)
- Specified by:
convertModelValueToFormValue
in classAbstractFormFieldType
-
-