| 程序包 | 说明 |
|---|---|
| org.apache.oro.text |
This package used to be the TextTools library and provides general
text processing support, including a glob regular expression class,
pattern caching and line-by-line processing classes.
|
| org.apache.oro.text.awk |
This package used to be the AwkTools library and provides AWK-like
regular expression classes that implement the
org.apache.oro.text.regex interfaces. |
| org.apache.oro.text.regex |
This package used to be the OROMatcher library and provides both
generic regular expression interfaces and Perl5 regular expression
compatible implementation classes.
|
| 限定符和类型 | 类和说明 |
|---|---|
class |
GlobCompiler
The GlobCompiler class will compile a glob expression into a Perl5Pattern
that may be used to match patterns in conjunction with Perl5Matcher.
|
| 构造器和说明 |
|---|
MatchActionProcessor(PatternCompiler compiler,
PatternMatcher matcher)
Creates a new MatchActionProcessor instance initialized with the specified
pattern compiler and matcher.
|
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:
PatternCacheFIFO(GenericPatternCache.DEFAULT_CAPACITY, compiler);
|
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);
|
PatternCacheLRU(int capacity,
PatternCompiler compiler)
Creates a PatternCacheLRU instance with a given cache capacity,
and initialized to use a given PatternCompiler instance as a pattern
compiler.
|
PatternCacheLRU(PatternCompiler compiler)
Same as:
PatternCacheLRU(GenericPatternCache.DEFAULT_CAPACITY, compiler);
|
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:
PatternCacheRandom(GenericPatternCache.DEFAULT_CAPACITY, compiler);
|
| 限定符和类型 | 类和说明 |
|---|---|
class |
AwkCompiler
The AwkCompiler class is used to create compiled regular expressions
conforming to the Awk regular expression syntax.
|
| 限定符和类型 | 类和说明 |
|---|---|
class |
Perl5Compiler
The Perl5Compiler class is used to create compiled regular expressions
conforming to the Perl5 regular expression syntax.
|
Copyright © 2024. All rights reserved.