|
![]() |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.oro.text.GenericPatternCache
org.apache.oro.text.PatternCacheFIFO
public final class PatternCacheFIFO
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.
GenericPatternCache
Field Summary |
---|
Fields inherited from class org.apache.oro.text.GenericPatternCache |
---|
DEFAULT_CAPACITY |
Constructor Summary | |
---|---|
PatternCacheFIFO()
Same as: |
|
PatternCacheFIFO(int capacity)
Same as: |
|
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. |
|
PatternCacheFIFO(PatternCompiler compiler)
Same as: |
Method Summary |
---|
Methods inherited from class org.apache.oro.text.GenericPatternCache |
---|
addPattern, addPattern, capacity, getPattern, getPattern, size |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PatternCacheFIFO(int capacity, PatternCompiler compiler)
capacity
- The capacity of the cache.compiler
- The PatternCompiler to use to compile patterns.public PatternCacheFIFO(PatternCompiler compiler)
PatternCacheFIFO(GenericPatternCache.DEFAULT_CAPACITY, compiler);
public PatternCacheFIFO(int capacity)
PatternCacheFIFO(capacity, new Perl5Compiler());
public PatternCacheFIFO()
PatternCacheFIFO(GenericPatternCache.DEFAULT_CAPACITY);
|
![]() |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |