Uses of Class
edu.washington.cs.knowitall.regex.Match
-
Packages that use Match Package Description edu.washington.cs.knowitall.regex -
-
Uses of Match in edu.washington.cs.knowitall.regex
Subclasses of Match in edu.washington.cs.knowitall.regex Modifier and Type Class Description protected static class
Match.FinalMatch<E>
A match representation that has efficient method calls but is immutable.protected static class
Match.IntermediateMatch<E>
A match representation that is mutable but many method calls compute values instead of returning stored values.Methods in edu.washington.cs.knowitall.regex that return Match Modifier and Type Method Description Match<E>
RegularExpression. find(java.util.List<E> tokens)
Find the first match of the regular expression against tokens.Match<E>
RegularExpression. find(java.util.List<E> tokens, int start)
Find the first match of the regular expression against tokens, starting at the specified index.Match<E>
RegularExpression. lookingAt(java.util.List<E> tokens)
Determine if the regular expression matches the beginning of the supplied tokens.Match<E>
RegularExpression. lookingAt(java.util.List<E> tokens, int start)
Determine if the regular expression matches the supplied tokens, starting at the specified index.Match<E>
RegularExpression. match(java.util.List<E> tokens)
Methods in edu.washington.cs.knowitall.regex that return types with arguments of type Match Modifier and Type Method Description java.util.List<Match<E>>
RegularExpression. findAll(java.util.List<E> tokens)
Find all non-overlapping matches of the regular expression against tokens.Constructors in edu.washington.cs.knowitall.regex with parameters of type Match Constructor Description FinalMatch(Match<E> m)
Match(Match<E> match)
-