Package com.ironsoftware.ironpdf.form
Class FormFieldsSet
java.lang.Object
com.ironsoftware.ironpdf.form.FormFieldsSet
A container class contains the list of form field separated by the type.
-
Constructor Summary
ConstructorDescriptionFormFieldsSet
(List<CheckBoxField> checkBoxFields, List<TextField> textFields, List<ComboBoxField> comboBoxFields, List<FormField> unknownFields) (INTERNAL) Please Get FormFieldsSet fromFormManager.getFields()
-
Method Summary
Modifier and TypeMethodDescriptionGets all form fields.Gets checkbox fields.Gets combobox fields.Gets text fields.Gets unknown fields.
-
Constructor Details
-
FormFieldsSet
public FormFieldsSet(List<CheckBoxField> checkBoxFields, List<TextField> textFields, List<ComboBoxField> comboBoxFields, List<FormField> unknownFields) (INTERNAL) Please Get FormFieldsSet fromFormManager.getFields()
- Parameters:
checkBoxFields
- the checkbox fieldstextFields
- the text fieldscomboBoxFields
- the combo box fieldsunknownFields
- the unknown fields
-
-
Method Details
-
getCheckBoxFields
Gets checkbox fields.- Returns:
- a new list of checkbox form fields
-
getTextFields
Gets text fields.- Returns:
- a new list of text form fields
-
getComboBoxFields
Gets combobox fields.- Returns:
- a new list of combobox form fields
-
getUnknownFields
Gets unknown fields.- Returns:
- a new list of unknown form fields
-
getAllFields
Gets all form fields.- Returns:
- a new list of all form fields
-