Interface ConversionStrategy<X>
-
- Type Parameters:
X- Type of the object being converted.
- All Known Subinterfaces:
SheetConversionStrategy,WorkbookConversionStrategy
- All Known Implementing Classes:
AbstractConversionStrategy,BasicCellConversionStrategy,BasicSheetConversionStrategy,BasicTableStrategy,BasicWorkbookConversionStrategy,DefaultCommentConverter,DefaultStyleConverter,MergedCellConversionStrategy,ParagraphRowStrategy,ParagraphsAndTablesRowStrategy,TableCellConversionStrategy
public interface ConversionStrategy<X>Defines all or part of the approach of converting from X into a HTML String. The contract of this class is that the methods must be called in order: start, process*, end. They must also always be called with the sameHTMLBuilderargument. The converter is not thread-safe, but can be reused multiple times serially.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocess(X in, HTMLBuilder out)
-
-
-
Method Detail
-
process
void process(X in, HTMLBuilder out)
-
-