Interface IRegex
-
- All Known Implementing Classes:
RegexComposed
,RegexConcat
,RegexLeaf
,RegexOptional
,RegexOr
public interface IRegex
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
count()
Map<String,RegexPartialMatch>
createPartialMatch(Iterator<String> it)
String
getPattern()
boolean
match(StringLocated full)
RegexResult
matcher(String full)
-
-
-
Method Detail
-
getPattern
String getPattern()
-
count
int count()
-
createPartialMatch
Map<String,RegexPartialMatch> createPartialMatch(Iterator<String> it)
-
match
boolean match(StringLocated full)
-
matcher
RegexResult matcher(String full)
-
-