ORO, Inc. Logo  All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.oroinc.text.PatternCacheFIFO

java.lang.Object
   |
   +----com.oroinc.text.GenericPatternCache
           |
           +----com.oroinc.text.PatternCacheFIFO

public final class PatternCacheFIFO
extends GenericPatternCache
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.

Copyright © 1997 Original Resuable Objects, Inc. All rights reserved.

See Also:
GenericPatternCache

Constructor Index

 o PatternCacheFIFO()
Same as:
 PatternCacheFIFO(GenericPatternCache.DEFAULT_CAPACITY);
 
 o PatternCacheFIFO(int)
Same as:
 PatternCacheFIFO(capacity, new Perl5Compiler());
 
 o PatternCacheFIFO(int, PatternCompiler)
Creates a PatternCacheFIFO instance with a given cache capacity, initialized to use a given PatternCompiler instance as a pattern compiler.
 o PatternCacheFIFO(PatternCompiler)
Same as:
 PatternCacheFIFO(GenericPatternCache.DEFAULT_CAPACITY, compiler);
 

Constructors

 o PatternCacheFIFO
 public PatternCacheFIFO(int capacity,
                         PatternCompiler compiler)
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.
compiler - The PatternCompiler to use to compile patterns.
 o PatternCacheFIFO
 public PatternCacheFIFO(PatternCompiler compiler)
Same as:
 PatternCacheFIFO(GenericPatternCache.DEFAULT_CAPACITY, compiler);
 

 o PatternCacheFIFO
 public PatternCacheFIFO(int capacity)
Same as:
 PatternCacheFIFO(capacity, new Perl5Compiler());
 

 o PatternCacheFIFO
 public PatternCacheFIFO()
Same as:
 PatternCacheFIFO(GenericPatternCache.DEFAULT_CAPACITY);
 


ORO, Inc. Logo  All Packages  Class Hierarchy  This Package  Previous  Next  Index