类 PatternCacheRandom
java.lang.Object
org.apache.oro.text.GenericPatternCache
org.apache.oro.text.PatternCacheRandom
- 所有已实现的接口:
PatternCache
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.
- 从以下版本开始:
- 1.0
- 版本:
- ,
- 另请参阅:
-
字段概要
从类继承的字段 org.apache.oro.text.GenericPatternCache
DEFAULT_CAPACITY -
构造器概要
构造器构造器说明Same as:PatternCacheRandom(int capacity) Same as:PatternCacheRandom(int capacity, PatternCompiler compiler) Creates a PatternCacheRandom instance with a given cache capacity and initialized to use a given PatternCompiler instance as a pattern compiler.PatternCacheRandom(PatternCompiler compiler) Same as: -
方法概要
从类继承的方法 org.apache.oro.text.GenericPatternCache
addPattern, addPattern, capacity, getPattern, getPattern, size
-
构造器详细资料
-
PatternCacheRandom
Creates a PatternCacheRandom instance with a given cache capacity and initialized to use a given PatternCompiler instance as a pattern compiler.- 参数:
capacity- The capacity of the cache.compiler- The PatternCompiler to use to compile patterns.
-
PatternCacheRandom
Same as:PatternCacheRandom(GenericPatternCache.DEFAULT_CAPACITY, compiler);
-
PatternCacheRandom
public PatternCacheRandom(int capacity) Same as:PatternCacheRandom(capacity, new Perl5Compiler());
-
PatternCacheRandom
public PatternCacheRandom()Same as:PatternCacheRandom(GenericPatternCache.DEFAULT_CAPACITY);
-