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()
java.util.Map<java.lang.String,RegexPartialMatch>
createPartialMatch(java.util.Iterator<java.lang.String> it)
java.lang.String
getPattern()
boolean
match(StringLocated full)
RegexResult
matcher(java.lang.String full)
-
-
-
Method Detail
-
getPattern
java.lang.String getPattern()
-
count
int count()
-
createPartialMatch
java.util.Map<java.lang.String,RegexPartialMatch> createPartialMatch(java.util.Iterator<java.lang.String> it)
-
match
boolean match(StringLocated full)
-
matcher
RegexResult matcher(java.lang.String full)
-
-