Uses of Class
com.jaxfront.core.util.stringSearch.StringSearch

Packages that use StringSearch
com.jaxfront.core.util.stringSearch Implementations of high-performance String searching algorithms. 
 

Uses of StringSearch in com.jaxfront.core.util.stringSearch
 

Subclasses of StringSearch in com.jaxfront.core.util.stringSearch
 class BNDM
          An implementation of the Backwards Non-deterministic Dawg (Directed acyclic word graph) Matching algorithm by Gonzalo Navarro and Mathieu Raffinot.
 class BNDMWildcards
          An implementation of the BNDM algorithm with wildcards ("don't care" symbols).
 class BoyerMooreHorspool
          An implementation of Horspool's improved version of the Boyer-Moore String searching algorithm.
 class BoyerMooreHorspoolRaita
          An implementation of Raita's enhancement to the Boyer-Moore-Horspool String searching algorithm.
 class BoyerMooreSunday
          An implementation of Sunday's simplified "Quick Finder" version of the Boyer-Moore algorithm.
 class MismatchSearch
          Subclasses of MismatchSearch allow for searching with a fixed number of possible errors.
 class ShiftOr
          An implementation of the Shift-Or algorithm by Ricardo Baeza-Yates and Gaston Gonnet as outlined in "A New Approach to Text Searching" (appeared in Proceedings of the 12th International Conference on Research and Development in Datum Retrieval).
 class ShiftOrClasses
          An implementation of the Shift-Or algorithm that supports character classes.
 class ShiftOrMismatches
          An implementation of the Shift-Or algorithm with mismatches.
 class ShiftOrWildcards
          An implementation of the Shift-Or algorithm with wildcards ("don't care" symbols).