Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Package org.apache.oro.text

Interface Summary
MatchAction The MatchAction interface provides the callback interface for actions bound to patterns in MatchActionProcessor.
PatternCache An interface defining the basic functions of a regular expression cache.
 

Class Summary
DefaultMatchAction DefaultMatchAction is a support class for MatchActionProcessor, providing a default match action.
GenericPatternCache This is the base class for all cache implementations provided in the org.apache.oro.text package.
GlobCompiler The GlobCompiler class will compile a glob expression into a Perl5Pattern that may be used to match patterns in conjunction with Perl5Matcher.
MatchActionInfo This class is used to provide information regarding a match found by MatchActionProcessor to a MatchAction callback implementation.
MatchActionProcessor 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.
PatternCacheFIFO This class is a GenericPatternCache subclass implementing a FIFO (First In First Out) cache replacement policy.
PatternCacheFIFO2 This class is a GenericPatternCache subclass implementing a second chance FIFO (First In First Out) cache replacement policy.
PatternCacheLRU This class is a GenericPatternCache subclass implementing an LRU (Least Recently Used) cache replacement policy.
PatternCacheRandom This class is a GenericPatternCache subclass implementing a random cache replacement policy.
 

Exception Summary
MalformedCachePatternException An exception used to indicate errors in a regular expression fetched from a PatternCache.