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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
parse(String text)
Parses thetext
and changes it according to the providedILinkRenderStrategy
implementations.
-