Package org.camunda.bpm.engine.form
Interface FormType
- All Known Implementing Classes:
AbstractFormFieldType
,BooleanFormType
,DateFormType
,EnumFormType
,LongFormType
,SimpleFormFieldType
,StringFormType
public interface FormType
Used to indicate the type on a
FormProperty
.- Author:
- Tom Baeyens
-
Method Summary
Modifier and TypeMethodDescriptiongetInformation
(String key) Retrieve type specific extra information like the list of values for enum types or the format for date types.getName()
Name for the form type.
-
Method Details
-
getName
String getName()Name for the form type. -
getInformation
Retrieve 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.
-