Interface PostProcessorFactory

All Superinterfaces:
Dependent, Function<Document,PostProcessor>
All Known Implementing Classes:
AbbreviationNodePostProcessor.Factory, AnchorLinkNodePostProcessor.Factory, AttributesNodePostProcessor.Factory, AutolinkNodePostProcessor.Factory, DocumentPostProcessorFactory, EnumeratedReferenceNodePostProcessor.Factory, EscapedCharacterNodePostProcessor.Factory, IncludeNodePostProcessor.Factory, MediaTagsNodePostProcessor.Factory, NodePostProcessorFactory, YouTubeLinkNodePostProcessor.Factory, ZzzzzzDocumentPostProcessor.Factory, ZzzzzzNodePostProcessor.Factory

public interface PostProcessorFactory extends Function<Document,PostProcessor>, Dependent
  • Method Details

    • getNodeTypes

      @Nullable @Nullable Map<Class<?>,Set<Class<?>>> getNodeTypes()
      A map of nodes of interest as keys and values a set of classes, if implemented by an ancestors then the node should be excluded from processing by this processor i.e. DoNotDecorate.class if the processor adds links so that existing links will be ignored.
      Returns:
      a map of desired node types mapped to a set of ancestors under which the post processor does not process the block
    • apply

      @NotNull @NotNull PostProcessor apply(@NotNull @NotNull Document document)
      Specified by:
      apply in interface Function<Document,PostProcessor>
      Parameters:
      document - for which to create the post processor
      Returns:
      post processor for the document