| java.lang.Object org.apache.oro.text.GenericPatternCache org.apache.oro.text.PatternCacheFIFO
PatternCacheFIFO | final public class PatternCacheFIFO extends GenericPatternCache (Code) | | This class is a GenericPatternCache subclass implementing a FIFO (First
In First Out) cache replacement policy. In other words, patterns are
added to the cache until the cache becomes full. Once the cache is full,
if a new pattern is added to the cache, it replaces the first of
the current patterns in the cache to have been added.
version: @version@ since: 1.0 See Also: GenericPatternCache |
PatternCacheFIFO | public PatternCacheFIFO(int capacity, PatternCompiler compiler)(Code) | | Creates a PatternCacheFIFO instance with a given cache capacity,
initialized to use a given PatternCompiler instance as a pattern compiler.
Parameters: capacity - The capacity of the cache. Parameters: compiler - The PatternCompiler to use to compile patterns. |
PatternCacheFIFO | public PatternCacheFIFO(PatternCompiler compiler)(Code) | | Same as:
PatternCacheFIFO(GenericPatternCache.DEFAULT_CAPACITY, compiler);
|
PatternCacheFIFO | public PatternCacheFIFO(int capacity)(Code) | | Same as:
PatternCacheFIFO(capacity, new Perl5Compiler());
|
PatternCacheFIFO | public PatternCacheFIFO()(Code) | | Same as:
PatternCacheFIFO(GenericPatternCache.DEFAULT_CAPACITY);
|
|
|