Interface TextElementMatcher
- All Known Implementing Classes:
TextElement
public interface TextElementMatcher
-
Method Summary
Modifier and TypeMethodDescriptiondefault TextElementMatcherand(TextElementMatcher textElementMatcher)This allows the combination of different TextElementMatcher instances.
If combined, all of the TextElementMatchers have to return true.booleanmatch(TextElement textElement)
-
Method Details
-
match
-
and
This allows the combination of different TextElementMatcher instances.
If combined, all of the TextElementMatchers have to return true.- Parameters:
textElementMatcher- TextElementMatcher to combine with this one- Returns:
- A new and combined TextElementMatcher of this and textElementMatcher
-