索引

A B C D E F G I K L M O P Q R S T U 
常量字段值|所有程序包|所有类和接口|序列化表格

A

accept(File) - 类中的方法 org.apache.oro.io.RegexFilenameFilter
Filters a filename.
accept(File, String) - 类中的方法 org.apache.oro.io.RegexFilenameFilter
Filters a filename.
addAction(String) - 类中的方法 org.apache.oro.text.MatchActionProcessor
Binds a patten to the default action.
addAction(String, int) - 类中的方法 org.apache.oro.text.MatchActionProcessor
Binds a patten to the default action, providing options to be used to compile the pattern.
addAction(String, int, MatchAction) - 类中的方法 org.apache.oro.text.MatchActionProcessor
Registers a pattern action pair, providing options to be used to compile the pattern.
addAction(String, MatchAction) - 类中的方法 org.apache.oro.text.MatchActionProcessor
Registers a pattern action pair.
addElement(Object, Object) - 接口中的方法 org.apache.oro.util.Cache
 
addElement(Object, Object) - 类中的方法 org.apache.oro.util.CacheFIFO
Adds a value to the cache.
addElement(Object, Object) - 类中的方法 org.apache.oro.util.CacheFIFO2
Adds a value to the cache.
addElement(Object, Object) - 类中的方法 org.apache.oro.util.CacheLRU
Adds a value to the cache.
addElement(Object, Object) - 类中的方法 org.apache.oro.util.CacheRandom
Adds a value to the cache.
addElement(Object, Object) - 类中的方法 org.apache.oro.util.GenericCache
 
addPattern(String) - 类中的方法 org.apache.oro.text.GenericPatternCache
Same as calling
addPattern(String) - 接口中的方法 org.apache.oro.text.PatternCache
Adds a pattern to the cache and returns the compiled pattern.
addPattern(String, int) - 类中的方法 org.apache.oro.text.GenericPatternCache
Adds a pattern to the cache and returns the compiled pattern.
addPattern(String, int) - 接口中的方法 org.apache.oro.text.PatternCache
Adds a pattern to the cache and returns the compiled pattern.
appendSubstitution(StringBuffer, MatchResult, int, PatternMatcherInput, PatternMatcher, Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Substitution
Appends the substitution to a buffer containing the original input with substitutions applied for the pattern matches found so far.
appendSubstitution(StringBuffer, MatchResult, int, PatternMatcherInput, PatternMatcher, Pattern) - 类中的方法 org.apache.oro.text.regex.StringSubstitution
Appends the substitution to a buffer containing the original input with substitutions applied for the pattern matches found so far.
appendSubstitution(StringBuffer, MatchResult, int, PatternMatcherInput, PatternMatcher, Pattern) - 接口中的方法 org.apache.oro.text.regex.Substitution
Appends the substitution to a buffer containing the original input with substitutions applied for the pattern matches found so far.
AwkCompiler - org.apache.oro.text.awk中的类
The AwkCompiler class is used to create compiled regular expressions conforming to the Awk regular expression syntax.
AwkCompiler() - 类的构造器 org.apache.oro.text.awk.AwkCompiler
 
AwkFilenameFilter - org.apache.oro.io中的类
AwkFilenameFilter is a RegexFilenameFilter subclass that filters on Awk regular expressions as implemented by the org.apache.oro.text.awk package, which is required to use this class.
AwkFilenameFilter() - 类的构造器 org.apache.oro.io.AwkFilenameFilter
Same as AwkFilenameFilter("");
AwkFilenameFilter(String) - 类的构造器 org.apache.oro.io.AwkFilenameFilter
Same as AwkFilenameFilter(regex, AwkCompiler.DEFAULT_MASK);
AwkFilenameFilter(String, int) - 类的构造器 org.apache.oro.io.AwkFilenameFilter
Construct a filter initialized with the indicated regular expression and accompanying compilation options conforming to those used by org.apache.oro.text.awk.AwkCompiler
AwkMatcher - org.apache.oro.text.awk中的类
The AwkMatcher class is used to match regular expressions (conforming to the Awk regular expression syntax) generated by AwkCompiler.
AwkMatcher() - 类的构造器 org.apache.oro.text.awk.AwkMatcher
 
AwkPattern - org.apache.oro.text.awk中的类
An implementation of the Pattern interface for Awk regular expressions.
AwkStreamInput - org.apache.oro.text.awk中的类
The AwkStreamInput class is used to look for pattern matches in an input stream (actually a java.io.Reader instance) in conjunction with the AwkMatcher class.
AwkStreamInput(Reader) - 类的构造器 org.apache.oro.text.awk.AwkStreamInput
Creates an AwkStreamInput instance bound to a Reader with an initial buffer size and default buffer increment of 2048 bytes.
AwkStreamInput(Reader, int) - 类的构造器 org.apache.oro.text.awk.AwkStreamInput
Creates an AwkStreamInput instance bound to a Reader with a specified initial buffer size and default buffer increment.

B

begin(int) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the begin offset of the subgroup of the last match found relative the beginning of the match.
begin(int) - 接口中的方法 org.apache.oro.text.regex.MatchResult
 
beginOffset(int) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns an offset marking the beginning of the last pattern match found relative to the beginning of the input from which the match was extracted.
beginOffset(int) - 接口中的方法 org.apache.oro.text.regex.MatchResult
Returns an offset marking the beginning of the pattern match relative to the beginning of the input from which the match was extracted.

C

Cache - org.apache.oro.util中的接口
An interface defining the basic functions of a cache.
CacheFIFO - org.apache.oro.util中的类
This class is a GenericCache subclass implementing a FIFO (First In First Out) cache replacement policy.
CacheFIFO() - 类的构造器 org.apache.oro.util.CacheFIFO
Same as:
CacheFIFO(int) - 类的构造器 org.apache.oro.util.CacheFIFO
Creates a CacheFIFO instance with a given cache capacity.
CacheFIFO2 - org.apache.oro.util中的类
This class is a GenericCache subclass implementing a second chance FIFO (First In First Out) cache replacement policy.
CacheFIFO2() - 类的构造器 org.apache.oro.util.CacheFIFO2
Same as:
CacheFIFO2(int) - 类的构造器 org.apache.oro.util.CacheFIFO2
Creates a CacheFIFO2 instance with a given cache capacity.
CacheLRU - org.apache.oro.util中的类
This class is a GenericCache subclass implementing an LRU (Least Recently Used) cache replacement policy.
CacheLRU() - 类的构造器 org.apache.oro.util.CacheLRU
Same as:
CacheLRU(int) - 类的构造器 org.apache.oro.util.CacheLRU
Creates a CacheLRU instance with a given cache capacity.
CacheRandom - org.apache.oro.util中的类
This class is a GenericCache subclass implementing a random cache replacement policy.
CacheRandom() - 类的构造器 org.apache.oro.util.CacheRandom
Same as:
CacheRandom(int) - 类的构造器 org.apache.oro.util.CacheRandom
Creates a CacheRandom instance with a given cache capacity.
capacity() - 类中的方法 org.apache.oro.text.GenericPatternCache
Returns the maximum number of patterns that can be cached at one time.
capacity() - 接口中的方法 org.apache.oro.text.PatternCache
Returns the maximum number of patterns that can be cached at one time.
capacity() - 接口中的方法 org.apache.oro.util.Cache
Returns the maximum number of elements that can be cached at one time.
capacity() - 类中的方法 org.apache.oro.util.GenericCache
Returns the maximum number of elements that can be cached at one time.
CASE_INSENSITIVE_MASK - 类中的静态变量 org.apache.oro.text.awk.AwkCompiler
A mask passed as an option to the compile methods to indicate a compiled regular expression should be case insensitive.
CASE_INSENSITIVE_MASK - 类中的静态变量 org.apache.oro.text.GlobCompiler
A mask passed as an option to the compile methods to indicate a compiled glob expression should be case insensitive.
CASE_INSENSITIVE_MASK - 类中的静态变量 org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile methods to indicate a compiled regular expression should be case insensitive.
charAt(int) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Returns the character at a particular offset relative to the begin offset of the input.
charLine - 类中的变量 org.apache.oro.text.MatchActionInfo
The char[] representation of the matching line with the trailing newline truncated.
compile(char[]) - 类中的方法 org.apache.oro.text.awk.AwkCompiler
Same as calling compile(pattern, AwkCompiler.DEFAULT_MASK);
compile(char[]) - 类中的方法 org.apache.oro.text.GlobCompiler
Same as calling compile(pattern, GlobCompiler.DEFAULT_MASK);
compile(char[]) - 接口中的方法 org.apache.oro.text.regex.PatternCompiler
Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.
compile(char[]) - 类中的方法 org.apache.oro.text.regex.Perl5Compiler
Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);
compile(char[], int) - 类中的方法 org.apache.oro.text.awk.AwkCompiler
Compiles an Awk regular expression into an AwkPattern instance that can be used by an AwkMatcher object to perform pattern matching.
compile(char[], int) - 类中的方法 org.apache.oro.text.GlobCompiler
Compiles a Glob expression into a Perl5Pattern instance that can be used by a Perl5Matcher object to perform pattern matching.
compile(char[], int) - 接口中的方法 org.apache.oro.text.regex.PatternCompiler
Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.
compile(char[], int) - 类中的方法 org.apache.oro.text.regex.Perl5Compiler
Compiles a Perl5 regular expression into a Perl5Pattern instance that can be used by a Perl5Matcher object to perform pattern matching.
compile(String) - 类中的方法 org.apache.oro.text.awk.AwkCompiler
Same as calling compile(pattern, AwkCompiler.DEFAULT_MASK);
compile(String) - 类中的方法 org.apache.oro.text.GlobCompiler
Same as calling compile(pattern, GlobCompiler.DEFAULT_MASK);
compile(String) - 接口中的方法 org.apache.oro.text.regex.PatternCompiler
Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.
compile(String) - 类中的方法 org.apache.oro.text.regex.Perl5Compiler
Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);
compile(String, int) - 类中的方法 org.apache.oro.text.awk.AwkCompiler
Compiles an Awk regular expression into an AwkPattern instance that can be used by an AwkMatcher object to perform pattern matching.
compile(String, int) - 类中的方法 org.apache.oro.text.GlobCompiler
Compiles a Glob expression into a Perl5Pattern instance that can be used by a Perl5Matcher object to perform pattern matching.
compile(String, int) - 接口中的方法 org.apache.oro.text.regex.PatternCompiler
Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.
compile(String, int) - 类中的方法 org.apache.oro.text.regex.Perl5Compiler
Compiles a Perl5 regular expression into a Perl5Pattern instance that can be used by a Perl5Matcher object to perform pattern matching.
contains(char[], Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if a string (represented as a char[]) contains a pattern.
contains(char[], Pattern) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if a string (represented as a char[]) contains a pattern.
contains(char[], Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if a string (represented as a char[]) contains a pattern.
contains(String, Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if a string contains a pattern.
contains(String, Pattern) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if a string contains a pattern.
contains(String, Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if a string contains a pattern.
contains(AwkStreamInput, Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if the contents of an AwkStreamInput, starting from the current offset of the input contains a pattern.
contains(PatternMatcherInput, Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if the contents of a PatternMatcherInput, starting from the current offset of the input contains a pattern.
contains(PatternMatcherInput, Pattern) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if the contents of a PatternMatcherInput, starting from the current offset of the input contains a pattern.
contains(PatternMatcherInput, Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if the contents of a PatternMatcherInput, starting from the current offset of the input contains a pattern.

D

DEFAULT_CAPACITY - 类中的静态变量 org.apache.oro.text.GenericPatternCache
The default capacity to be used by the GenericPatternCache subclasses provided with this package.
DEFAULT_CAPACITY - 类中的静态变量 org.apache.oro.util.GenericCache
The default capacity to be used by the GenericCache subclasses provided with this package.
DEFAULT_MASK - 类中的静态变量 org.apache.oro.text.awk.AwkCompiler
The default mask for the compile methods.
DEFAULT_MASK - 类中的静态变量 org.apache.oro.text.GlobCompiler
The default mask for the compile methods.
DEFAULT_MASK - 类中的静态变量 org.apache.oro.text.regex.Perl5Compiler
The default mask for the compile methods.

E

end(int) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the end offset of the subgroup of the last match found relative the beginning of the match.
end(int) - 接口中的方法 org.apache.oro.text.regex.MatchResult
 
endOffset(int) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns an offset marking the end of the last pattern match found relative to the beginning of the input from which the match was extracted.
endOffset(int) - 接口中的方法 org.apache.oro.text.regex.MatchResult
Returns an offset marking the end of the pattern match relative to the beginning of the input from which the match was extracted.
endOfInput() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Returns whether or not the end of the input has been reached.
endOfStream() - 类中的方法 org.apache.oro.text.awk.AwkStreamInput
 
EXTENDED_MASK - 类中的静态变量 org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile methods to indicate a compiled regular expression should be treated as a Perl5 extended pattern (i.e., a pattern using the /x modifier).

F

fields - 类中的变量 org.apache.oro.text.MatchActionInfo
A List of Strings containing the fields of the line that were separated out by the fieldSeparator.
fieldSeparator - 类中的变量 org.apache.oro.text.MatchActionInfo
The field separator used by the MatchActionProcessor.

G

GenericCache - org.apache.oro.util中的类
This is the base class for all cache implementations provided in the org.apache.oro.util package.
GenericPatternCache - org.apache.oro.text中的类
This is the base class for all cache implementations provided in the org.apache.oro.text package.
getBeginOffset() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
 
getBuffer() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Retrieves the char[] buffer to be used used as input by PatternMatcher implementations to look for matches.
getCurrentOffset() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
 
getElement(Object) - 接口中的方法 org.apache.oro.util.Cache
 
getElement(Object) - 类中的方法 org.apache.oro.util.CacheFIFO2
 
getElement(Object) - 类中的方法 org.apache.oro.util.CacheLRU
 
getElement(Object) - 类中的方法 org.apache.oro.util.GenericCache
 
getEndOffset() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
 
getInput() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Retrieves the original input used to initialize the PatternMatcherInput instance.
getMatch() - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Fetches the last match found by a call to a matches() or contains() method.
getMatch() - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the last match found by a call to a match(), substitute(), or split() method.
getMatch() - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Fetches the last match found by a call to a matches() or contains() method.
getMatch() - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Fetches the last match found by a call to a matches() or contains() method.
getMatchBeginOffset() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Returns the offset marking the beginning of the match found by contains().
getMatchEndOffset() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Returns the offset marking the end of the match found by contains().
getOptions() - 类中的方法 org.apache.oro.text.awk.AwkPattern
This method returns an integer containing the compilation options used to compile this pattern.
getOptions() - 接口中的方法 org.apache.oro.text.regex.Pattern
This method returns an integer containing the compilation options used to compile this pattern.
getOptions() - 类中的方法 org.apache.oro.text.regex.Perl5Pattern
This method returns an integer containing the compilation options used to compile this pattern.
getPattern() - 类中的方法 org.apache.oro.text.awk.AwkPattern
This method returns the string representation of the pattern.
getPattern() - 接口中的方法 org.apache.oro.text.regex.Pattern
This method returns the string representation of the pattern.
getPattern() - 类中的方法 org.apache.oro.text.regex.Perl5Pattern
This method returns the string representation of the pattern.
getPattern(String) - 类中的方法 org.apache.oro.text.GenericPatternCache
Same as calling
getPattern(String) - 接口中的方法 org.apache.oro.text.PatternCache
This method fetches a pattern from the cache.
getPattern(String, int) - 类中的方法 org.apache.oro.text.GenericPatternCache
This method fetches a pattern from the cache.
getPattern(String, int) - 接口中的方法 org.apache.oro.text.PatternCache
This method fetches a pattern from the cache.
getSubstitution() - 类中的方法 org.apache.oro.text.regex.StringSubstitution
Returns the string substitution represented by this object.
GlobCompiler - org.apache.oro.text中的类
The GlobCompiler class will compile a glob expression into a Perl5Pattern that may be used to match patterns in conjunction with Perl5Matcher.
GlobCompiler() - 类的构造器 org.apache.oro.text.GlobCompiler
The default GlobCompiler constructor.
GlobFilenameFilter - org.apache.oro.io中的类
GlobFilenameFilter is a RegexFilenameFilter subclass that filters on Glob regular expressions as implemented by the org.apache.oro.text package, which is required to use this class.
GlobFilenameFilter() - 类的构造器 org.apache.oro.io.GlobFilenameFilter
Same as GlobFilenameFilter("");
GlobFilenameFilter(String) - 类的构造器 org.apache.oro.io.GlobFilenameFilter
Same as GlobFilenameFilter(regex, GlobCompiler.DEFAULT_MASK);
GlobFilenameFilter(String, int) - 类的构造器 org.apache.oro.io.GlobFilenameFilter
Construct a filter initialized with the indicated regular expression and accompanying compilation options conforming to those used by org.apache.oro.text.GlobCompiler
globToPerl5(char[], int) - 类中的静态方法 org.apache.oro.text.GlobCompiler
This static method is the basic engine of the Glob PatternCompiler implementation.
group(int) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the contents of the parenthesized subgroups of the last match found according to the behavior dictated by the MatchResult interface.
group(int) - 接口中的方法 org.apache.oro.text.regex.MatchResult
Returns the contents of the parenthesized subgroups of a match, counting parentheses from left to right and starting from 1.
groups() - 类中的方法 org.apache.oro.text.perl.Perl5Util
 
groups() - 接口中的方法 org.apache.oro.text.regex.MatchResult
 

I

input - 类中的变量 org.apache.oro.text.MatchActionInfo
The input stream passed to the MatchActionProcessor from which the matching line was read.
INTERPOLATE_ALL - 类中的静态变量 org.apache.oro.text.regex.Perl5Substitution
A constant used when creating a Perl5Substitution indicating that interpolation variables should be computed relative to the most recent pattern match.
INTERPOLATE_NONE - 类中的静态变量 org.apache.oro.text.regex.Perl5Substitution
A constant used when creating a Perl5Substitution indicating that interpolation variables should be interpreted literally, effectively disabling interpolation.
isFull() - 类中的方法 org.apache.oro.util.GenericCache
 
isMultiline() - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
 

K

keys() - 类中的方法 org.apache.oro.util.GenericCache
 

L

length() - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the length of the last match found.
length() - 接口中的方法 org.apache.oro.text.regex.MatchResult
A convenience method returning the length of the entire match.
length() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
 
line - 类中的变量 org.apache.oro.text.MatchActionInfo
The String representation of the matching line with the trailing newline truncated.
lineNumber - 类中的变量 org.apache.oro.text.MatchActionInfo
The line number of the matching line

M

MalformedCachePatternException - org.apache.oro.text中的异常错误类
An exception used to indicate errors in a regular expression fetched from a PatternCache.
MalformedCachePatternException() - 异常错误类的构造器 org.apache.oro.text.MalformedCachePatternException
Simply calls the corresponding constructor of its superclass.
MalformedCachePatternException(String) - 异常错误类的构造器 org.apache.oro.text.MalformedCachePatternException
Simply calls the corresponding constructor of its superclass.
MalformedPatternException - org.apache.oro.text.regex中的异常错误类
A class used to signify the occurrence of a syntax error in a regular expression that is being compiled.
MalformedPatternException() - 异常错误类的构造器 org.apache.oro.text.regex.MalformedPatternException
Simply calls the corresponding constructor of its superclass.
MalformedPatternException(String) - 异常错误类的构造器 org.apache.oro.text.regex.MalformedPatternException
Simply calls the corresponding constructor of its superclass.
MalformedPerl5PatternException - org.apache.oro.text.perl中的异常错误类
An exception used to indicate errors in Perl style regular expressions.
MalformedPerl5PatternException() - 异常错误类的构造器 org.apache.oro.text.perl.MalformedPerl5PatternException
Simply calls the corresponding constructor of its superclass.
MalformedPerl5PatternException(String) - 异常错误类的构造器 org.apache.oro.text.perl.MalformedPerl5PatternException
Simply calls the corresponding constructor of its superclass.
match - 类中的变量 org.apache.oro.text.MatchActionInfo
The first match found in the line of input.
match() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
A convenience method returning the part of the input corresponding to the last match found by a call to a Perl5Matcher contains method.
match(String, char[]) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Searches for the first pattern match somewhere in a character array taking a pattern specified in Perl5 native format:
match(String, String) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Searches for the first pattern match in a String taking a pattern specified in Perl5 native format:
match(String, PatternMatcherInput) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Searches for the next pattern match somewhere in a org.apache.oro.text.regex.PatternMatcherInput instance, taking a pattern specified in Perl5 native format:
MatchAction - org.apache.oro.text中的接口
The MatchAction interface provides the callback interface for actions bound to patterns in MatchActionProcessor.
MatchActionInfo - org.apache.oro.text中的类
This class is used to provide information regarding a match found by MatchActionProcessor to a MatchAction callback implementation.
MatchActionInfo() - 类的构造器 org.apache.oro.text.MatchActionInfo
 
MatchActionProcessor - org.apache.oro.text中的类
The MatchActionProcessor class provides AWK-like line by line filtering of a text stream, pattern action pair association, and field splitting based on a registered separator.
MatchActionProcessor() - 类的构造器 org.apache.oro.text.MatchActionProcessor
Default constructor for MatchActionProcessor.
MatchActionProcessor(PatternCompiler, PatternMatcher) - 类的构造器 org.apache.oro.text.MatchActionProcessor
Creates a new MatchActionProcessor instance initialized with the specified pattern compiler and matcher.
matcher - 类中的变量 org.apache.oro.text.MatchActionInfo
The PatternMatcher used to find the match.
matches(char[], Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if a string (represented as a char[]) exactly matches a given pattern.
matches(char[], Pattern) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if a string (represented as a char[]) exactly matches a given pattern.
matches(char[], Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if a string (represented as a char[]) exactly matches a given pattern.
matches(String, Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if a string exactly matches a given pattern.
matches(String, Pattern) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if a string exactly matches a given pattern.
matches(String, Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if a string exactly matches a given pattern.
matches(PatternMatcherInput, Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.
matches(PatternMatcherInput, Pattern) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.
matches(PatternMatcherInput, Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.
matchesPrefix(char[], Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if a prefix of a string (represented as a char[]) matches a given pattern.
matchesPrefix(char[], Pattern) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if a prefix of a string (represented as a char[]) matches a given pattern.
matchesPrefix(char[], Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if a prefix of a string (represented as a char[]) matches a given pattern.
matchesPrefix(char[], Pattern, int) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if a prefix of a string (represented as a char[]) matches a given pattern, starting from a given offset into the string.
matchesPrefix(char[], Pattern, int) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if a prefix of a string (represented as a char[]) matches a given pattern, starting from a given offset into the string.
matchesPrefix(char[], Pattern, int) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if a prefix of a string (represented as a char[]) matches a given pattern, starting from a given offset into the string.
matchesPrefix(String, Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if a prefix of a string matches a given pattern.
matchesPrefix(String, Pattern) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if a prefix of a string matches a given pattern.
matchesPrefix(String, Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if a prefix of a string matches a given pattern.
matchesPrefix(PatternMatcherInput, Pattern) - 类中的方法 org.apache.oro.text.awk.AwkMatcher
Determines if a prefix of a PatternMatcherInput instance matches a given pattern.
matchesPrefix(PatternMatcherInput, Pattern) - 接口中的方法 org.apache.oro.text.regex.PatternMatcher
Determines if a prefix of a PatternMatcherInput instance matches a given pattern.
matchesPrefix(PatternMatcherInput, Pattern) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Determines if a prefix of a PatternMatcherInput instance matches a given pattern.
MatchResult - org.apache.oro.text.regex中的接口
The MatchResult interface allows PatternMatcher implementors to return results storing match information in whatever format they like, while presenting a consistent way of accessing that information.
MULTILINE_MASK - 类中的静态变量 org.apache.oro.text.awk.AwkCompiler
A mask passed as an option to the compile methods to indicate a compiled regular expression should treat input as having multiple lines.
MULTILINE_MASK - 类中的静态变量 org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile methods to indicate a compiled regular expression should treat input as having multiple lines.

O

org.apache.oro.io - 程序包 org.apache.oro.io
This package provides FilenameFilters that filter based on a regular expression and other I/O-related classes that derive their functionality from regular expressions.
org.apache.oro.text - 程序包 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 - 程序包 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.perl - 程序包 org.apache.oro.text.perl
This package used to be the PerlTools library and adds Perl5 regular expression syntactic sugar built on top of the org.apache.oro.text.regex Perl5 regular expression classes.
org.apache.oro.text.regex - 程序包 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.
org.apache.oro.util - 程序包 org.apache.oro.util
 
output - 类中的变量 org.apache.oro.text.MatchActionInfo
The output stream passed to the MatchActionProcessor.

P

pattern - 类中的变量 org.apache.oro.text.MatchActionInfo
The pattern found in the line of input.
Pattern - org.apache.oro.text.regex中的接口
The Pattern interface allows multiple representations of a regular expression to be defined.
PatternCache - org.apache.oro.text中的接口
An interface defining the basic functions of a regular expression cache.
PatternCacheFIFO - org.apache.oro.text中的类
This class is a GenericPatternCache subclass implementing a FIFO (First In First Out) cache replacement policy.
PatternCacheFIFO() - 类的构造器 org.apache.oro.text.PatternCacheFIFO
Same as:
PatternCacheFIFO(int) - 类的构造器 org.apache.oro.text.PatternCacheFIFO
Same as:
PatternCacheFIFO(int, PatternCompiler) - 类的构造器 org.apache.oro.text.PatternCacheFIFO
Creates a PatternCacheFIFO instance with a given cache capacity, initialized to use a given PatternCompiler instance as a pattern compiler.
PatternCacheFIFO(PatternCompiler) - 类的构造器 org.apache.oro.text.PatternCacheFIFO
Same as:
PatternCacheFIFO2 - org.apache.oro.text中的类
This class is a GenericPatternCache subclass implementing a second chance FIFO (First In First Out) cache replacement policy.
PatternCacheFIFO2() - 类的构造器 org.apache.oro.text.PatternCacheFIFO2
Same as:
PatternCacheFIFO2(int) - 类的构造器 org.apache.oro.text.PatternCacheFIFO2
Same as:
PatternCacheFIFO2(int, PatternCompiler) - 类的构造器 org.apache.oro.text.PatternCacheFIFO2
Creates a PatternCacheFIFO2 instance with a given cache capacity, initialized to use a given PatternCompiler instance as a pattern compiler.
PatternCacheFIFO2(PatternCompiler) - 类的构造器 org.apache.oro.text.PatternCacheFIFO2
Same as:
PatternCacheLRU - org.apache.oro.text中的类
This class is a GenericPatternCache subclass implementing an LRU (Least Recently Used) cache replacement policy.
PatternCacheLRU() - 类的构造器 org.apache.oro.text.PatternCacheLRU
Same as:
PatternCacheLRU(int) - 类的构造器 org.apache.oro.text.PatternCacheLRU
Same as:
PatternCacheLRU(int, PatternCompiler) - 类的构造器 org.apache.oro.text.PatternCacheLRU
Creates a PatternCacheLRU instance with a given cache capacity, and initialized to use a given PatternCompiler instance as a pattern compiler.
PatternCacheLRU(PatternCompiler) - 类的构造器 org.apache.oro.text.PatternCacheLRU
Same as:
PatternCacheRandom - org.apache.oro.text中的类
This class is a GenericPatternCache subclass implementing a random cache replacement policy.
PatternCacheRandom() - 类的构造器 org.apache.oro.text.PatternCacheRandom
Same as:
PatternCacheRandom(int) - 类的构造器 org.apache.oro.text.PatternCacheRandom
Same as:
PatternCacheRandom(int, PatternCompiler) - 类的构造器 org.apache.oro.text.PatternCacheRandom
Creates a PatternCacheRandom instance with a given cache capacity and initialized to use a given PatternCompiler instance as a pattern compiler.
PatternCacheRandom(PatternCompiler) - 类的构造器 org.apache.oro.text.PatternCacheRandom
Same as:
PatternCompiler - org.apache.oro.text.regex中的接口
The PatternCompiler interface defines the operations a regular expression compiler must implement.
PatternMatcher - org.apache.oro.text.regex中的接口
The PatternMatcher interface defines the operations a regular expression matcher must implement.
PatternMatcherInput - org.apache.oro.text.regex中的类
The PatternMatcherInput class is used to preserve state across calls to the contains() methods of PatternMatcher instances.
PatternMatcherInput(char[]) - 类的构造器 org.apache.oro.text.regex.PatternMatcherInput
Like calling:
PatternMatcherInput(char[], int, int) - 类的构造器 org.apache.oro.text.regex.PatternMatcherInput
Creates a PatternMatcherInput object, associating a region of a string (represented as a char[]) as input to be used for pattern matching by PatternMatcher objects.
PatternMatcherInput(String) - 类的构造器 org.apache.oro.text.regex.PatternMatcherInput
Like calling
PatternMatcherInput(String, int, int) - 类的构造器 org.apache.oro.text.regex.PatternMatcherInput
Creates a PatternMatcherInput object, associating a region of a String as input to be used for pattern matching by PatternMatcher objects.
Perl5Compiler - org.apache.oro.text.regex中的类
The Perl5Compiler class is used to create compiled regular expressions conforming to the Perl5 regular expression syntax.
Perl5Compiler() - 类的构造器 org.apache.oro.text.regex.Perl5Compiler
 
Perl5Debug - org.apache.oro.text.regex中的类
The Perl5Debug class is not intended for general use and should not be instantiated, but is provided because some users may find the output of its single method to be useful.
Perl5FilenameFilter - org.apache.oro.io中的类
Perl5FilenameFilter is a RegexFilenameFilter subclass that filters on Perl5 regular expressions as implemented by the org.apache.oro.text.regex package, which is required to use this class.
Perl5FilenameFilter() - 类的构造器 org.apache.oro.io.Perl5FilenameFilter
Same as Perl5FilenameFilter("");
Perl5FilenameFilter(String) - 类的构造器 org.apache.oro.io.Perl5FilenameFilter
Same as Perl5FilenameFilter(regex, Perl5Compiler.DEFAULT_MASK);
Perl5FilenameFilter(String, int) - 类的构造器 org.apache.oro.io.Perl5FilenameFilter
Construct a filter initialized with the indicated regular expression and accompanying compilation options conforming to those used by org.apache.oro.text.regex.Perl5Compiler
Perl5Matcher - org.apache.oro.text.regex中的类
The Perl5Matcher class is used to match regular expressions (conforming to the Perl5 regular expression syntax) generated by Perl5Compiler.
Perl5Matcher() - 类的构造器 org.apache.oro.text.regex.Perl5Matcher
 
Perl5Pattern - org.apache.oro.text.regex中的类
An implementation of the Pattern interface for Perl5 regular expressions.
Perl5 regular expressions - 程序包 org.apache.oro.text.regex中的搜索标记
Perl5Substitution - org.apache.oro.text.regex中的类
Perl5Substitution implements a Substitution consisting of a literal string, but allowing Perl5 variable interpolation referencing saved groups in a match.
Perl5Substitution() - 类的构造器 org.apache.oro.text.regex.Perl5Substitution
Default constructor initializing substitution to a zero length String and the number of interpolations to Perl5Substitution.INTERPOLATE_ALL.
Perl5Substitution(String) - 类的构造器 org.apache.oro.text.regex.Perl5Substitution
Creates a Perl5Substitution using the specified substitution and setting the number of interpolations to Perl5Substitution.INTERPOLATE_ALL.
Perl5Substitution(String, int) - 类的构造器 org.apache.oro.text.regex.Perl5Substitution
Creates a Perl5Substitution using the specified substitution and setting the number of interpolations to the specified value.
Perl5Util - org.apache.oro.text.perl中的类
This is a utility class implementing the 3 most common Perl5 operations involving regular expressions: [m]/pattern/[i][m][s][x], s/pattern/replacement/[g][i][m][o][s][x], and split().
Perl5Util() - 类的构造器 org.apache.oro.text.perl.Perl5Util
Default constructor for Perl5Util.
Perl5Util(PatternCache) - 类的构造器 org.apache.oro.text.perl.Perl5Util
A secondary constructor for Perl5Util.
postMatch() - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the part of the input following the last match found.
postMatch() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
A convenience method returning the part of the input occurring after the last match found by a call to a Perl5Matcher contains method.
postMatchCharArray() - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the part of the input following the last match found as a char array.
preMatch() - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the part of the input preceding the last match found.
preMatch() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
A convenience method returning the part of the input occurring before the last match found by a call to a Perl5Matcher contains method.
preMatchCharArray() - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the part of the input preceding the last match found as a char array.
printProgram(Perl5Pattern) - 类中的静态方法 org.apache.oro.text.regex.Perl5Debug
This method prints to a String the bytecode program contained in a Perl5Pattern._ The program byte codes are identical to those generated by Perl5 with the -r option, but the offsets are different due to the different data structures used.
processMatch(MatchActionInfo) - 接口中的方法 org.apache.oro.text.MatchAction
This method is called by MatchActionProcessor when it finds an associated pattern in a line of input.
processMatches(InputStream, OutputStream) - 类中的方法 org.apache.oro.text.MatchActionProcessor
This method reads the provided input one line at a time using the platform standart character encoding and for every registered pattern that is contained in the line it executes the associated MatchAction's processMatch() method.
processMatches(InputStream, OutputStream, String) - 类中的方法 org.apache.oro.text.MatchActionProcessor
This method reads the provided input one line at a time and for every registered pattern that is contained in the line it executes the associated MatchAction's processMatch() method.
processMatches(Reader, Writer) - 类中的方法 org.apache.oro.text.MatchActionProcessor
This method reads the provided input one line at a time and for every registered pattern that is contained in the line it executes the associated MatchAction's processMatch() method.

Q

QUESTION_MATCHES_ZERO_OR_ONE_MASK - 类中的静态变量 org.apache.oro.text.GlobCompiler
A mask passed as an option to the compile methods to indicate that a ?
quotemeta(char[]) - 类中的静态方法 org.apache.oro.text.regex.Perl5Compiler
Given a character string, returns a Perl5 expression that interprets each character of the original string literally.
quotemeta(String) - 类中的静态方法 org.apache.oro.text.regex.Perl5Compiler
Given a character string, returns a Perl5 expression that interprets each character of the original string literally.

R

READ_ONLY_MASK - 类中的静态变量 org.apache.oro.text.GlobCompiler
A mask passed as an option to the compile methods to indicate that the resulting Perl5Pattern should be treated as a read only data structure by Perl5Matcher, making it safe to share a single Perl5Pattern instance among multiple threads without needing synchronization.
READ_ONLY_MASK - 类中的静态变量 org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile methods to indicate that the resulting Perl5Pattern should be treated as a read only data structure by Perl5Matcher, making it safe to share a single Perl5Pattern instance among multiple threads without needing synchronization.
RegexFilenameFilter - org.apache.oro.io中的类
RegexFilenameFilter is the base class for a set of FilenameFilter implementations that filter based on a regular expression.

S

setBeginOffset(int) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Sets the offset of the input that should be considered the start of the region to be considered as input by PatternMatcher methods.
setCurrentOffset(int) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Sets the offset of the input that should be considered the current offset where PatternMatcher methods should start looking for matches.
setEndOffset(int) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Sets the offset of the input that should be considered the end of the region to be considered as input by PatternMatcher methods.
setFieldSeparator(String) - 类中的方法 org.apache.oro.text.MatchActionProcessor
Sets the field separator to use when splitting a line into fields.
setFieldSeparator(String, int) - 类中的方法 org.apache.oro.text.MatchActionProcessor
Sets the field separator to use when splitting a line into fields.
setFilterExpression(String) - 类中的方法 org.apache.oro.io.RegexFilenameFilter
Set the regular expression on which to filter.
setFilterExpression(String, int) - 类中的方法 org.apache.oro.io.RegexFilenameFilter
Set the regular expression on which to filter along with any special options to use when compiling the expression.
setInput(char[]) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
This method is identical to calling:
setInput(char[], int, int) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Associates a region of a string (represented as a char[]) as input to be used for pattern matching by PatternMatcher objects.
setInput(String) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
This method is identical to calling:
setInput(String, int, int) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Associates a region of a String as input to be used for pattern matching by PatternMatcher objects.
setMatchOffsets(int, int) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
This method is intended for use by PatternMatcher implementations.
setMultiline(boolean) - 类中的方法 org.apache.oro.text.regex.Perl5Matcher
Set whether or not subsequent calls to matches() or contains() should treat the input as consisting of multiple lines.
setSubstitution(String) - 类中的方法 org.apache.oro.text.regex.Perl5Substitution
Sets the substitution represented by this Perl5Substitution, also setting the number of interpolations to Perl5Substitution.INTERPOLATE_ALL.
setSubstitution(String) - 类中的方法 org.apache.oro.text.regex.StringSubstitution
Sets the substitution represented by this StringSubstitution.
setSubstitution(String, int) - 类中的方法 org.apache.oro.text.regex.Perl5Substitution
Sets the substitution represented by this Perl5Substitution, also setting the number of interpolations to the specified value.
SINGLELINE_MASK - 类中的静态变量 org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile methods to indicate a compiled regular expression should treat input as being a single line.
size() - 类中的方法 org.apache.oro.text.GenericPatternCache
Returns the number of elements in the cache, not to be confused with the GenericPatternCache.capacity() which returns the number of elements that can be held in the cache at one time.
size() - 接口中的方法 org.apache.oro.text.PatternCache
Returns the number of elements in the cache, not to be confused with the PatternCache.capacity() which returns the number of elements that can be held in the cache at one time.
size() - 接口中的方法 org.apache.oro.util.Cache
Returns the number of elements in the cache, not to be confused with the Cache.capacity() which returns the number of elements that can be held in the cache at one time.
size() - 类中的方法 org.apache.oro.util.GenericCache
Returns the number of elements in the cache, not to be confused with the capacity() which returns the number of elements that can be held in the cache at one time.
split(String) - 类中的方法 org.apache.oro.text.perl.Perl5Util
split(String, String) - 类中的方法 org.apache.oro.text.perl.Perl5Util
split(String, String, int) - 类中的方法 org.apache.oro.text.perl.Perl5Util
split(Collection, String) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Splits input in the default Perl manner, splitting on all whitespace.
split(Collection, String, String) - 类中的方法 org.apache.oro.text.perl.Perl5Util
This method is identical to calling:
split(Collection, String, String, int) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Splits a String into strings that are appended to a List, but no more than a specified limit.
split(Collection, PatternMatcher, Pattern, String) - 类中的静态方法 org.apache.oro.text.regex.Util
Splits up a String instance and stores results as a Collection of all its substrings using a regular expression as the delimiter.
split(Collection, PatternMatcher, Pattern, String, int) - 类中的静态方法 org.apache.oro.text.regex.Util
Splits up a String instance and stores results as a List of substrings numbering no more than a specified limit.
split(PatternMatcher, Pattern, String) - 类中的静态方法 org.apache.oro.text.regex.Util
split(PatternMatcher, Pattern, String, int) - 类中的静态方法 org.apache.oro.text.regex.Util
SPLIT_ALL - 类中的静态变量 org.apache.oro.text.perl.Perl5Util
A constant passed to the split() methods indicating that all occurrences of a pattern should be used to split a string.
SPLIT_ALL - 类中的静态变量 org.apache.oro.text.regex.Util
A constant passed to the split() methods indicating that all occurrences of a pattern should be used to split a string.
STAR_CANNOT_MATCH_NULL_MASK - 类中的静态变量 org.apache.oro.text.GlobCompiler
A mask passed as an option to the compile methods to indicate that a * should not be allowed to match the null string.
StringSubstitution - org.apache.oro.text.regex中的类
StringSubstitution implements a Substitution consisting of a simple literal string.
StringSubstitution() - 类的构造器 org.apache.oro.text.regex.StringSubstitution
Default constructor initializing substitution to a zero length String.
StringSubstitution(String) - 类的构造器 org.apache.oro.text.regex.StringSubstitution
Creates a StringSubstitution representing the given string.
substitute(StringBuffer, String, String) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Substitutes a pattern in a given input with a replacement string.
substitute(StringBuffer, PatternMatcher, Pattern, Substitution, String, int) - 类中的静态方法 org.apache.oro.text.regex.Util
Searches a string for a pattern and replaces the first occurrences of the pattern with a Substitution up to the number of substitutions specified by the numSubs parameter.
substitute(StringBuffer, PatternMatcher, Pattern, Substitution, PatternMatcherInput, int) - 类中的静态方法 org.apache.oro.text.regex.Util
Searches a string for a pattern and replaces the first occurrences of the pattern with a Substitution up to the number of substitutions specified by the numSubs parameter.
substitute(String, String) - 类中的方法 org.apache.oro.text.perl.Perl5Util
Substitutes a pattern in a given input with a replacement string.
substitute(PatternMatcher, Pattern, Substitution, String) - 类中的静态方法 org.apache.oro.text.regex.Util
Searches a string for a pattern and substitutes only the first occurence of the pattern.
substitute(PatternMatcher, Pattern, Substitution, String, int) - 类中的静态方法 org.apache.oro.text.regex.Util
Searches a string for a pattern and replaces the first occurrences of the pattern with a Substitution up to the number of substitutions specified by the numSubs parameter.
SUBSTITUTE_ALL - 类中的静态变量 org.apache.oro.text.regex.Util
A constant passed to the substitute() methods indicating that all occurrences of a pattern should be substituted.
Substitution - org.apache.oro.text.regex中的接口
The Substitution interface provides a means for you to control how a substitution is performed when using the Util.substitute method.
substring(int) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Returns a new string that is a substring of the PatternMatcherInput instance.
substring(int, int) - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Returns a new string that is a substring of the PatternMatcherInput instance.

T

toString() - 类中的方法 org.apache.oro.text.perl.Perl5Util
Returns the same as group(0).
toString() - 接口中的方法 org.apache.oro.text.regex.MatchResult
Returns the same as group(0).
toString() - 类中的方法 org.apache.oro.text.regex.PatternMatcherInput
Returns the string representation of the input, where the input is considered to start from the begin offset and end at the end offset.
toString() - 类中的方法 org.apache.oro.text.regex.StringSubstitution
Returns the same value as StringSubstitution.getSubstitution().

U

Util - org.apache.oro.text.regex中的类
The Util class is a holder for useful static utility methods that can be generically applied to Pattern and PatternMatcher instances.
A B C D E F G I K L M O P Q R S T U 
常量字段值|所有程序包|所有类和接口|序列化表格