Interface ILinkParser

  • All Known Implementing Classes:
    DefaultLinkParser, LinkParser
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface ILinkParser
    ILinkParser parses an input text and performs modifications according to its render strategies.
    Author:
    Gerolf Seitz
    • Method Detail

      • parse

        String parse​(String text)
        Parses the text and changes it according to the provided ILinkRenderStrategy implementations.
        Parameters:
        text - the input text which should be modified.
        Returns:
        the modified input text.