Uses of Interface
io.dialob.api.form.FormItem
-
Packages that use FormItem Package Description io.dialob.api.form -
-
Uses of FormItem in io.dialob.api.form
Classes in io.dialob.api.form that implement FormItem Modifier and Type Class Description classImmutableFormItemImmutable implementation ofFormItem.classModifiableFormItemA modifiable implementation of theFormItemtype.Methods in io.dialob.api.form that return types with arguments of type FormItem Modifier and Type Method Description Map<String,FormItem>Form. getData()Map<String,FormItem>ImmutableForm. getData()Map<String,FormItem>ModifiableForm. getData()Methods in io.dialob.api.form with parameters of type FormItem Modifier and Type Method Description static ImmutableFormItemImmutableFormItem. copyOf(FormItem instance)Creates an immutable copy of aFormItemvalue.ImmutableFormItem.BuilderImmutableFormItem.Builder. from(FormItem instance)Fill a builder with attribute values from the providedFormIteminstance.ModifiableFormItemModifiableFormItem. from(FormItem instance)Fill this modifiable instance with attribute values from the providedFormIteminstance.FormRepository.ModifierFormRepository.Modifier. putData(String key, FormItem value)Put the given key and value into thedatamap attribute.FormRepository.UpdaterFormRepository.Updater. putData(String key, FormItem value)Put the given key and value into thedatamap attribute.ImmutableForm.BuilderImmutableForm.Builder. putData(String key, FormItem value)Put one entry to thedatamap.ModifiableFormModifiableForm. putData(String key, FormItem value)Put one entry to thedatamap.Method parameters in io.dialob.api.form with type arguments of type FormItem Modifier and Type Method Description ImmutableForm.BuilderImmutableForm.Builder. data(Map<String,? extends FormItem> entries)Sets or replaces all mappings from the specified map as entries for thedatamap.ImmutableForm.BuilderImmutableForm.Builder. putAllData(Map<String,? extends FormItem> entries)Put all mappings from the specified map as entries todatamap.ModifiableFormModifiableForm. putAllData(Map<String,? extends FormItem> entries)Put all mappings from the specified map as entries to thedatamap.ImmutableForm.BuilderImmutableForm.Builder. putData(Map.Entry<String,? extends FormItem> entry)Put one entry to thedatamap.ModifiableFormModifiableForm. setData(Map<String,? extends FormItem> entries)Sets or replaces all mappings from the specified map as entries for thedatamap.ImmutableFormImmutableForm. withData(Map<String,? extends FormItem> entries)Copy the current immutable object by replacing thedatamap with the specified map.
-