Home » Xerces-J-src.2.9.1 » org.apache.xerces » impl » xpath » regex » [javadoc | source]
org.apache.xerces.impl.xpath.regex
public class: BMPattern [javadoc | source]
java.lang.Object
   org.apache.xerces.impl.xpath.regex.BMPattern
Boyer-Moore searcher.
Field Summary
final  char[] pattern     
final  int[] shiftTable     
final  boolean ignoreCase     
Constructor:
 public BMPattern(String pat,
    boolean ignoreCase) 
 public BMPattern(String pat,
    int tableSize,
    boolean ignoreCase) 
Method from org.apache.xerces.impl.xpath.regex.BMPattern Summary:
matches,   matches,   matches,   matchesIgnoreCase,   matchesIgnoreCase,   matchesIgnoreCase
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.xerces.impl.xpath.regex.BMPattern Detail:
 public int matches(CharacterIterator iterator,
    int start,
    int limit) 
 public int matches(String str,
    int start,
    int limit) 
 public int matches(char[] chars,
    int start,
    int limit) 
 int matchesIgnoreCase(CharacterIterator iterator,
    int start,
    int limit) 
 int matchesIgnoreCase(String text,
    int start,
    int limit) 
 int matchesIgnoreCase(char[] chars,
    int start,
    int limit)