Package org.apache.oro.text


package org.apache.oro.text
This package used to be the TextTools library and provides general text processing support, including a glob regular expression class, pattern caching and line-by-line processing classes.
  • Class
    Description
    This is the base class for all cache implementations provided in the org.apache.oro.text package.
    The GlobCompiler class will compile a glob expression into a Perl5Pattern that may be used to match patterns in conjunction with Perl5Matcher.
    An exception used to indicate errors in a regular expression fetched from a PatternCache.
    The MatchAction interface provides the callback interface for actions bound to patterns in MatchActionProcessor.
    This class is used to provide information regarding a match found by MatchActionProcessor to a MatchAction callback implementation.
    The MatchActionProcessor class provides AWK-like line by line filtering of a text stream, pattern action pair association, and field splitting based on a registered separator.
    An interface defining the basic functions of a regular expression cache.
    This class is a GenericPatternCache subclass implementing a FIFO (First In First Out) cache replacement policy.
    This class is a GenericPatternCache subclass implementing a second chance FIFO (First In First Out) cache replacement policy.
    This class is a GenericPatternCache subclass implementing an LRU (Least Recently Used) cache replacement policy.
    This class is a GenericPatternCache subclass implementing a random cache replacement policy.