Package org.commonmark.text
Interface CharMatcher
-
- All Known Implementing Classes:
AsciiMatcher
public interface CharMatcher
Matcher interface forchar
values.Note that because this matches on
char
values only (as opposed toint
code points), this only operates on the level of code units and doesn't support supplementary characters (seeCharacter.isSupplementaryCodePoint(int)
).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
matches(char c)
-