| java.lang.Object org.apache.oro.text.GenericPatternCache org.apache.oro.text.PatternCacheRandom
PatternCacheRandom | final public class PatternCacheRandom extends GenericPatternCache (Code) | | This class is a GenericPatternCache subclass implementing a random
cache replacement policy. In other words,
patterns are added to the cache until it becomes full. Once the
cache is full, when a new pattern is added to the cache, it replaces
a randomly selected pattern in the cache.
version: @version@ since: 1.0 See Also: GenericPatternCache |
PatternCacheRandom | public PatternCacheRandom(int capacity, PatternCompiler compiler)(Code) | | Creates a PatternCacheRandom instance with a given cache capacity
and 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. |
PatternCacheRandom | public PatternCacheRandom(PatternCompiler compiler)(Code) | | Same as:
PatternCacheRandom(GenericPatternCache.DEFAULT_CAPACITY, compiler);
|
PatternCacheRandom | public PatternCacheRandom(int capacity)(Code) | | Same as:
PatternCacheRandom(capacity, new Perl5Compiler());
|
PatternCacheRandom | public PatternCacheRandom()(Code) | | Same as:
PatternCacheRandom(GenericPatternCache.DEFAULT_CAPACITY);
|
|
|