Class BMPattern
- java.lang.Object
-
- org.smooks.engine.delivery.sax.ng.org.apache.xerces.impl.xpath.regex.BMPattern
-
public class BMPattern extends Object
Boyer-Moore searcher.- Version:
- $Id$
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
matches(char[] chars, int start, int limit)
int
matches(String str, int start, int limit)
int
matches(CharacterIterator iterator, int start, int limit)
-
-
-
Method Detail
-
matches
public int matches(CharacterIterator iterator, int start, int limit)
- Returns:
- -1 if iterator does not contain this pattern.
-
matches
public int matches(String str, int start, int limit)
- Returns:
- -1 if str does not contain this pattern.
-
matches
public int matches(char[] chars, int start, int limit)
- Returns:
- -1 if chars does not contain this pattern.
-
-