Package | Description |
---|---|
org.apache.pdfbox.pdmodel.fdf |
The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document.
|
org.apache.pdfbox.pdmodel.interactive.form |
The interactive package contains classes for handling Interactive Forms, also known as "AcroForms".
|
Modifier and Type | Method and Description |
---|---|
java.util.List<FDFField> |
FDFDictionary.getFields()
This will get the list of FDF Fields.
|
java.util.List<FDFField> |
FDFTemplate.getFields()
This will get a list of fields that are part of this template.
|
java.util.List<FDFField> |
FDFField.getKids()
This will get the list of kids.
|
Modifier and Type | Method and Description |
---|---|
void |
FDFDictionary.setFields(java.util.List<FDFField> fields)
This will set the list of fields.
|
void |
FDFTemplate.setFields(java.util.List<FDFField> fields)
This will set a list of fields for this template.
|
void |
FDFField.setKids(java.util.List<FDFField> kids)
This will set the list of kids.
|
Modifier and Type | Method and Description |
---|---|
(package private) FDFField |
PDNonTerminalField.exportFDF() |
(package private) abstract FDFField |
PDField.exportFDF()
Exports this field and its children as FDF.
|
(package private) FDFField |
PDTerminalField.exportFDF() |
Modifier and Type | Method and Description |
---|---|
(package private) void |
PDNonTerminalField.importFDF(FDFField fdfField) |
(package private) void |
PDField.importFDF(FDFField fdfField)
This will import a fdf field from a fdf document.
|
void |
PDTerminalField.importFDF(FDFField fdfField) |