org.apache.oro.text
public final class PatternCacheFIFO2 extends GenericPatternCache
Since: 1.0
Version: 2.0.8
See Also: GenericPatternCache
Constructor Summary | |
---|---|
PatternCacheFIFO2(int capacity, PatternCompiler compiler)
Creates a PatternCacheFIFO2 instance with a given cache capacity,
initialized to use a given PatternCompiler instance as a pattern compiler.
| |
PatternCacheFIFO2(PatternCompiler compiler)
Same as:
PatternCacheFIFO2(GenericPatternCache.DEFAULT_CAPACITY, compiler); | |
PatternCacheFIFO2(int capacity)
Same as:
PatternCacheFIFO2(capacity, new Perl5Compiler()); | |
PatternCacheFIFO2()
Same as:
PatternCacheFIFO2(GenericPatternCache.DEFAULT_CAPACITY); |
Parameters: capacity The capacity of the cache. compiler The PatternCompiler to use to compile patterns.
PatternCacheFIFO2(GenericPatternCache.DEFAULT_CAPACITY, compiler);
PatternCacheFIFO2(capacity, new Perl5Compiler());
PatternCacheFIFO2(GenericPatternCache.DEFAULT_CAPACITY);