Package io.keikai.doc.io.schema.docx
Interface IDOCXVisitor<T>
- Type Parameters:
T- the return type of the visit method.
public interface IDOCXVisitor<T>
Internal Use Only.
A visitor interface for visiting DOCX elements which based on XWPF element in a document.
- Author:
- Jamson Chan
-
Method Summary
Modifier and TypeMethodDescriptionvisit(DOCXDocument document) Visit the given document.Visit the given footer.Visit the given header.Visit the given section.Visit the given run.Visit the given table.Visit the given table cell.Visit the given table row.
-
Method Details
-
visit
Visit the given document.- Parameters:
document- the document to visit- Returns:
- the result of the visit
-
visit
Visit the given header.- Parameters:
header- the header to visit- Returns:
- the result of the visit
-
visit
Visit the given footer.- Parameters:
footer- the footer to visit- Returns:
- the result of the visit
-
visit
Visit the given section.- Parameters:
paragraph- the paragraph to visit- Returns:
- the result of the visit
-
visit
Visit the given run.- Parameters:
run- the run to visit- Returns:
- the result of the visit
-
visit
Visit the given table.- Parameters:
table- the table to visit- Returns:
- the result of the visit
-
visit
Visit the given table row.- Parameters:
tableRow- the table row to visit- Returns:
- the result of the visit
-
visit
Visit the given table cell.- Parameters:
tableCell- the table cell to visit- Returns:
- the result of the visit
-