Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A B C D E G I L M O P Q R S T U _

A

appendSubstitution(StringBuffer, MatchResult, int, PatternMatcherInput, PatternMatcher, Pattern) - Method in class 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) - Method in class 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) - Method in interface 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.

B

begin(int) - Method in interface org.apache.oro.text.regex.MatchResult
 
begin(int) - Method in class org.apache.oro.text.regex.Perl5MatchResult
 
beginOffset(int) - Method in interface 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.
beginOffset(int) - Method in class org.apache.oro.text.regex.Perl5MatchResult
Returns an offset marking the beginning of the pattern match relative to the beginning of the input.

C

CASE_INSENSITIVE_MASK - Static variable in class org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile 55 methods to indicate a compiled regular expression should be case insensitive.
CharStringPointer - class org.apache.oro.text.regex.CharStringPointer.
The CharStringPointer class is used to facilitate traversal of a char[] in the manner pointer traversals of strings are performed in C/C++.
CharStringPointer(char[], int) - Constructor for class org.apache.oro.text.regex.CharStringPointer
 
CharStringPointer(char[]) - Constructor for class org.apache.oro.text.regex.CharStringPointer
 
charAt(int) - Method in class org.apache.oro.text.regex.PatternMatcherInput
Returns the character at a particular offset relative to the begin offset of the input.
compile(String) - Method in interface 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) - Method in interface 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[]) - Method in interface 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) - Method in interface 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) - Method in class 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(char[]) - Method in class org.apache.oro.text.regex.Perl5Compiler
Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);
compile(String) - Method in class org.apache.oro.text.regex.Perl5Compiler
Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);
compile(String, int) - Method in class 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(String, Pattern) - Method in interface org.apache.oro.text.regex.PatternMatcher
Determines if a string contains a pattern.
contains(char[], Pattern) - Method in interface org.apache.oro.text.regex.PatternMatcher
Determines if a string (represented as a char[]) contains a pattern.
contains(PatternMatcherInput, Pattern) - Method in interface 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(String, Pattern) - Method in class org.apache.oro.text.regex.Perl5Matcher
Determines if a string contains a pattern.
contains(char[], Pattern) - Method in class org.apache.oro.text.regex.Perl5Matcher
Determines if a string (represented as a char[]) contains a pattern.
contains(PatternMatcherInput, Pattern) - Method in class 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_MASK - Static variable in class org.apache.oro.text.regex.Perl5Compiler
The default mask for the compile 55 methods.

E

EXTENDED_MASK - Static variable in class org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile 55 methods to indicate a compiled regular expression should be treated as a Perl5 extended pattern (i.e., a pattern using the /x modifier).
end(int) - Method in interface org.apache.oro.text.regex.MatchResult
 
end(int) - Method in class org.apache.oro.text.regex.Perl5MatchResult
 
endOfInput() - Method in class org.apache.oro.text.regex.PatternMatcherInput
Returns whether or not the end of the input has been reached.
endOffset(int) - Method in interface 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.
endOffset(int) - Method in class org.apache.oro.text.regex.Perl5MatchResult
Returns an offset marking the end of the pattern match relative to the beginning of the input.

G

getBeginOffset() - Method in class org.apache.oro.text.regex.PatternMatcherInput
 
getBuffer() - Method in class org.apache.oro.text.regex.PatternMatcherInput
Retrieves the char[] buffer to be used used as input by PatternMatcher implementations to look for matches.
getCurrentOffset() - Method in class org.apache.oro.text.regex.PatternMatcherInput
 
getEndOffset() - Method in class org.apache.oro.text.regex.PatternMatcherInput
 
getInput() - Method in class org.apache.oro.text.regex.PatternMatcherInput
Retrieves the original input used to initialize the PatternMatcherInput instance.
getMatch() - Method in interface org.apache.oro.text.regex.PatternMatcher
Fetches the last match found by a call to a matches() or contains() method.
getMatch() - Method in class org.apache.oro.text.regex.Perl5Matcher
Fetches the last match found by a call to a matches() or contains() method.
getMatchBeginOffset() - Method in class org.apache.oro.text.regex.PatternMatcherInput
Returns the offset marking the beginning of the match found by contains().
getMatchEndOffset() - Method in class org.apache.oro.text.regex.PatternMatcherInput
Returns the offset marking the end of the match found by contains().
getOptions() - Method in interface org.apache.oro.text.regex.Pattern
This method returns an integer containing the compilation options used to compile this pattern.
getOptions() - Method in class org.apache.oro.text.regex.Perl5Pattern
This method returns an integer containing the compilation options used to compile this pattern.
getPattern() - Method in interface org.apache.oro.text.regex.Pattern
This method returns the string representation of the pattern.
getPattern() - Method in class org.apache.oro.text.regex.Perl5Pattern
This method returns the string representation of the pattern.
getSubstitution() - Method in class org.apache.oro.text.regex.StringSubstitution
Returns the string substitution represented by this object.
group(int) - Method in interface 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.
group(int) - Method in class org.apache.oro.text.regex.Perl5MatchResult
 
groups() - Method in interface org.apache.oro.text.regex.MatchResult
 
groups() - Method in class org.apache.oro.text.regex.Perl5MatchResult
 

I

INTERPOLATE_ALL - Static variable in class 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 - Static variable in class org.apache.oro.text.regex.Perl5Substitution
A constant used when creating a Perl5Substitution indicating that interpolation variables should be interpreted literally, effectively disabling interpolation.
isMultiline() - Method in class org.apache.oro.text.regex.Perl5Matcher
 

L

length() - Method in interface org.apache.oro.text.regex.MatchResult
A convenience method returning the length of the entire match.
length() - Method in class org.apache.oro.text.regex.PatternMatcherInput
 
length() - Method in class org.apache.oro.text.regex.Perl5MatchResult
 

M

MULTILINE_MASK - Static variable in class org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile 55 methods to indicate a compiled regular expression should treat input as having multiple lines.
MalformedPatternException - exception org.apache.oro.text.regex.MalformedPatternException.
A class used to signify the occurrence of a syntax error in a regular expression that is being compiled.
MalformedPatternException() - Constructor for class org.apache.oro.text.regex.MalformedPatternException
Simply calls the corresponding constructor of its superclass.
MalformedPatternException(String) - Constructor for class org.apache.oro.text.regex.MalformedPatternException
Simply calls the corresponding constructor of its superclass.
MatchResult - interface org.apache.oro.text.regex.MatchResult.
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.
match() - Method in class 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 55 method.
matches(String, Pattern) - Method in interface org.apache.oro.text.regex.PatternMatcher
Determines if a string exactly matches a given pattern.
matches(char[], Pattern) - Method in interface org.apache.oro.text.regex.PatternMatcher
Determines if a string (represented as a char[]) exactly matches a given pattern.
matches(PatternMatcherInput, Pattern) - Method in interface org.apache.oro.text.regex.PatternMatcher
Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.
matches(char[], Pattern) - Method in class org.apache.oro.text.regex.Perl5Matcher
Determines if a string (represented as a char[]) exactly matches a given pattern.
matches(String, Pattern) - Method in class org.apache.oro.text.regex.Perl5Matcher
Determines if a string exactly matches a given pattern.
matches(PatternMatcherInput, Pattern) - Method in class org.apache.oro.text.regex.Perl5Matcher
Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.
matchesPrefix(char[], Pattern, int) - Method in interface 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(String, Pattern) - Method in interface org.apache.oro.text.regex.PatternMatcher
Determines if a prefix of a string matches a given pattern.
matchesPrefix(char[], Pattern) - Method in interface org.apache.oro.text.regex.PatternMatcher
Determines if a prefix of a string (represented as a char[]) matches a given pattern.
matchesPrefix(PatternMatcherInput, Pattern) - Method in interface org.apache.oro.text.regex.PatternMatcher
Determines if a prefix of a PatternMatcherInput instance matches a given pattern.
matchesPrefix(char[], Pattern, int) - Method in class 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(char[], Pattern) - Method in class org.apache.oro.text.regex.Perl5Matcher
Determines if a prefix of a string (represented as a char[]) matches a given pattern.
matchesPrefix(String, Pattern) - Method in class org.apache.oro.text.regex.Perl5Matcher
Determines if a prefix of a string matches a given pattern.
matchesPrefix(PatternMatcherInput, Pattern) - Method in class org.apache.oro.text.regex.Perl5Matcher
Determines if a prefix of a PatternMatcherInput instance matches a given pattern.

O

OpCode - class org.apache.oro.text.regex.OpCode.
The OpCode class should not be instantiated.
OpCode() - Constructor for class org.apache.oro.text.regex.OpCode
 
org.apache.oro.text.regex - package org.apache.oro.text.regex
 

P

Pattern - interface org.apache.oro.text.regex.Pattern.
The Pattern interface allows multiple representations of a regular expression to be defined.
PatternCompiler - interface org.apache.oro.text.regex.PatternCompiler.
The PatternCompiler interface defines the operations a regular expression compiler must implement.
PatternMatcher - interface org.apache.oro.text.regex.PatternMatcher.
The PatternMatcher interface defines the operations a regular expression matcher must implement.
PatternMatcherInput - class org.apache.oro.text.regex.PatternMatcherInput.
The PatternMatcherInput class is used to preserve state across calls to the contains() methods of PatternMatcher instances.
PatternMatcherInput(String, int, int) - Constructor for class 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.
PatternMatcherInput(String) - Constructor for class org.apache.oro.text.regex.PatternMatcherInput
Like calling
PatternMatcherInput(char[], int, int) - Constructor for class 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(char[]) - Constructor for class org.apache.oro.text.regex.PatternMatcherInput
Like calling:
Perl5Compiler - class org.apache.oro.text.regex.Perl5Compiler.
The Perl5Compiler class is used to create compiled regular expressions conforming to the Perl5 regular expression syntax.
Perl5Compiler() - Constructor for class org.apache.oro.text.regex.Perl5Compiler
 
Perl5Debug - class org.apache.oro.text.regex.Perl5Debug.
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.
Perl5Debug() - Constructor for class org.apache.oro.text.regex.Perl5Debug
A dummy constructor to prevent instantiation of Perl5Debug.
Perl5MatchResult - class org.apache.oro.text.regex.Perl5MatchResult.
A class used to store and access the results of a Perl5Pattern match.
Perl5MatchResult(int) - Constructor for class org.apache.oro.text.regex.Perl5MatchResult
Constructs a MatchResult able to store match information for a number of subpattern groups.
Perl5Matcher - class org.apache.oro.text.regex.Perl5Matcher.
The Perl5Matcher class is used to match regular expressions (conforming to the Perl5 regular expression syntax) generated by Perl5Compiler.
Perl5Matcher() - Constructor for class org.apache.oro.text.regex.Perl5Matcher
 
Perl5Pattern - class org.apache.oro.text.regex.Perl5Pattern.
An implementation of the Pattern interface for Perl5 regular expressions.
Perl5Pattern() - Constructor for class org.apache.oro.text.regex.Perl5Pattern
A dummy constructor with default visibility to override the default public constructor that would be created otherwise by the compiler.
Perl5Repetition - class org.apache.oro.text.regex.Perl5Repetition.
Perl5Repetition is a support class for Perl5Matcher.
Perl5Repetition() - Constructor for class org.apache.oro.text.regex.Perl5Repetition
 
Perl5Substitution - class org.apache.oro.text.regex.Perl5Substitution.
Perl5Substitution implements a Substitution consisting of a literal string, but allowing Perl5 variable interpolation referencing saved groups in a match.
Perl5Substitution() - Constructor for class org.apache.oro.text.regex.Perl5Substitution
Default constructor initializing substitution to a zero length String and the number of interpolations to Perl5Substitution.INTERPOLATE_ALL 55 .
Perl5Substitution(String) - Constructor for class org.apache.oro.text.regex.Perl5Substitution
Creates a Perl5Substitution using the specified substitution and setting the number of interpolations to Perl5Substitution.INTERPOLATE_ALL 55 .
Perl5Substitution(String, int) - Constructor for class org.apache.oro.text.regex.Perl5Substitution
Creates a Perl5Substitution using the specified substitution and setting the number of interpolations to the specified value.
postMatch() - Method in class 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 55 method.
preMatch() - Method in class 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 55 method.
printProgram(Perl5Pattern) - Static method in class 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.

Q

quotemeta(char[]) - Static method in class 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) - Static method in class 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 - Static variable in class org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile 55 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.

S

SINGLELINE_MASK - Static variable in class org.apache.oro.text.regex.Perl5Compiler
A mask passed as an option to the compile 55 methods to indicate a compiled regular expression should treat input as being a single line.
SPLIT_ALL - Static variable in class org.apache.oro.text.regex.Util
A constant passed to the split() 55 methods indicating that all occurrences of a pattern should be used to split a string.
SUBSTITUTE_ALL - Static variable in class org.apache.oro.text.regex.Util
A constant passed to the substitute() 55 methods indicating that all occurrences of a pattern should be substituted.
StringSubstitution - class org.apache.oro.text.regex.StringSubstitution.
StringSubstitution implements a Substitution consisting of a simple literal string.
StringSubstitution() - Constructor for class org.apache.oro.text.regex.StringSubstitution
Default constructor initializing substitution to a zero length String.
StringSubstitution(String) - Constructor for class org.apache.oro.text.regex.StringSubstitution
Creates a StringSubstitution representing the given string.
Substitution - interface org.apache.oro.text.regex.Substitution.
The Substitution interface provides a means for you to control how a substitution is performed when using the Util.substitute 55 method.
setBeginOffset(int) - Method in class 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) - Method in class 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) - Method in class 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.
setInput(String, int, int) - Method in class org.apache.oro.text.regex.PatternMatcherInput
Associates a region of a String as input to be used for pattern matching by PatternMatcher objects.
setInput(String) - Method in class org.apache.oro.text.regex.PatternMatcherInput
This method is identical to calling:
setInput(char[], int, int) - Method in class 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(char[]) - Method in class org.apache.oro.text.regex.PatternMatcherInput
This method is identical to calling:
setMatchOffsets(int, int) - Method in class org.apache.oro.text.regex.PatternMatcherInput
This method is intended for use by PatternMatcher implementations.
setMultiline(boolean) - Method in class org.apache.oro.text.regex.Perl5Matcher
Set whether or not subsequent calls to matches() 55 or contains() 55 should treat the input as consisting of multiple lines.
setSubstitution(String) - Method in class org.apache.oro.text.regex.Perl5Substitution
Sets the substitution represented by this Perl5Substitution, also setting the number of interpolations to Perl5Substitution.INTERPOLATE_ALL 55 .
setSubstitution(String, int) - Method in class org.apache.oro.text.regex.Perl5Substitution
Sets the substitution represented by this Perl5Substitution, also setting the number of interpolations to the specified value.
setSubstitution(String) - Method in class org.apache.oro.text.regex.StringSubstitution
Sets the substitution represented by this StringSubstitution.
split(Collection, PatternMatcher, Pattern, String, int) - Static method in class 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(Collection, PatternMatcher, Pattern, String) - Static method in class 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(PatternMatcher, Pattern, String, int) - Static method in class org.apache.oro.text.regex.Util
Deprecated. Use Util.split(Collection, PatternMatcher, Pattern, String, int) 55 instead.
split(PatternMatcher, Pattern, String) - Static method in class org.apache.oro.text.regex.Util
Deprecated. Use Util.split(Collection, PatternMatcher, Pattern, String) 55 instead.
substitute(PatternMatcher, Pattern, Substitution, String, int) - Static method in class 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(PatternMatcher, Pattern, Substitution, String) - Static method in class org.apache.oro.text.regex.Util
Searches a string for a pattern and substitutes only the first occurence of the pattern.
substitute(StringBuffer, PatternMatcher, Pattern, Substitution, String, int) - Static method in class 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) - Static method in class 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.
substring(int, int) - Method in class org.apache.oro.text.regex.PatternMatcherInput
Returns a new string that is a substring of the PatternMatcherInput instance.
substring(int) - Method in class org.apache.oro.text.regex.PatternMatcherInput
Returns a new string that is a substring of the PatternMatcherInput instance.

T

toString() - Method in class org.apache.oro.text.regex.CharStringPointer
 
toString() - Method in interface org.apache.oro.text.regex.MatchResult
Returns the same as group(0).
toString() - Method in class 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() - Method in class org.apache.oro.text.regex.Perl5MatchResult
The same as group(0).
toString() - Method in class org.apache.oro.text.regex.StringSubstitution
Returns the same value as StringSubstitution.getSubstitution() 55 .

U

Util - class org.apache.oro.text.regex.Util.
The Util class is a holder for useful static utility methods that can be generically applied to Pattern and PatternMatcher instances.
Util() - Constructor for class org.apache.oro.text.regex.Util
The default destructor for the Util class.

_

_ALNUM - Static variable in class org.apache.oro.text.regex.OpCode
 
_ALNUMC - Static variable in class org.apache.oro.text.regex.OpCode
 
_ALPHA - Static variable in class org.apache.oro.text.regex.OpCode
 
_ANY - Static variable in class org.apache.oro.text.regex.OpCode
 
_ANYOF - Static variable in class org.apache.oro.text.regex.OpCode
 
_ANYOFUN - Static variable in class org.apache.oro.text.regex.OpCode
 
_ASCII - Static variable in class org.apache.oro.text.regex.OpCode
 
_BACK - Static variable in class org.apache.oro.text.regex.OpCode
 
_BLANK - Static variable in class org.apache.oro.text.regex.OpCode
 
_BOL - Static variable in class org.apache.oro.text.regex.OpCode
 
_BOUND - Static variable in class org.apache.oro.text.regex.OpCode
 
_BRANCH - Static variable in class org.apache.oro.text.regex.OpCode
 
_CLOSE - Static variable in class org.apache.oro.text.regex.OpCode
 
_CNTRL - Static variable in class org.apache.oro.text.regex.OpCode
 
_CURLY - Static variable in class org.apache.oro.text.regex.OpCode
 
_CURLYX - Static variable in class org.apache.oro.text.regex.OpCode
 
_DIGIT - Static variable in class org.apache.oro.text.regex.OpCode
 
_END - Static variable in class org.apache.oro.text.regex.OpCode
 
_END_OF_STRING - Static variable in class org.apache.oro.text.regex.CharStringPointer
 
_EOL - Static variable in class org.apache.oro.text.regex.OpCode
 
_EXACTLY - Static variable in class org.apache.oro.text.regex.OpCode
 
_GBOL - Static variable in class org.apache.oro.text.regex.OpCode
 
_GRAPH - Static variable in class org.apache.oro.text.regex.OpCode
 
_IFMATCH - Static variable in class org.apache.oro.text.regex.OpCode
 
_LOWER - Static variable in class org.apache.oro.text.regex.OpCode
 
_MBOL - Static variable in class org.apache.oro.text.regex.OpCode
 
_MEOL - Static variable in class org.apache.oro.text.regex.OpCode
 
_MINMOD - Static variable in class org.apache.oro.text.regex.OpCode
 
_NALNUM - Static variable in class org.apache.oro.text.regex.OpCode
 
_NANYOFUN - Static variable in class org.apache.oro.text.regex.OpCode
 
_NBOUND - Static variable in class org.apache.oro.text.regex.OpCode
 
_NDIGIT - Static variable in class org.apache.oro.text.regex.OpCode
 
_NOPCODE - Static variable in class org.apache.oro.text.regex.OpCode
 
_NOTHING - Static variable in class org.apache.oro.text.regex.OpCode
 
_NSPACE - Static variable in class org.apache.oro.text.regex.OpCode
 
_NULL_OFFSET - Static variable in class org.apache.oro.text.regex.OpCode
 
_NULL_POINTER - Static variable in class org.apache.oro.text.regex.OpCode
 
_ONECHAR - Static variable in class org.apache.oro.text.regex.OpCode
 
_OPCODE - Static variable in class org.apache.oro.text.regex.OpCode
 
_OPCODE_COPY - Static variable in class org.apache.oro.text.regex.Perl5Substitution
A constant declaring opcode for copy operation.
_OPCODE_ENDCASE_MODE - Static variable in class org.apache.oro.text.regex.Perl5Substitution
A constant declaring opcode for lowercase mode operation.
_OPCODE_LOWERCASE_CHAR - Static variable in class org.apache.oro.text.regex.Perl5Substitution
A constant declaring opcode for lowercase char operation.
_OPCODE_LOWERCASE_MODE - Static variable in class org.apache.oro.text.regex.Perl5Substitution
A constant declaring opcode for lowercase mode operation.
_OPCODE_UPPERCASE_CHAR - Static variable in class org.apache.oro.text.regex.Perl5Substitution
A constant declaring opcode for uppercase char operation.
_OPCODE_UPPERCASE_MODE - Static variable in class org.apache.oro.text.regex.Perl5Substitution
A constant declaring opcode for lowercase mode operation.
_OPEN - Static variable in class org.apache.oro.text.regex.OpCode
 
_OPT_ANCH - Static variable in class org.apache.oro.text.regex.Perl5Pattern
 
_OPT_ANCH_BOL - Static variable in class org.apache.oro.text.regex.Perl5Pattern
 
_OPT_ANCH_MBOL - Static variable in class org.apache.oro.text.regex.Perl5Pattern
 
_OPT_IMPLICIT - Static variable in class org.apache.oro.text.regex.Perl5Pattern
 
_OPT_SKIP - Static variable in class org.apache.oro.text.regex.Perl5Pattern
 
_PLUS - Static variable in class org.apache.oro.text.regex.OpCode
 
_PRINT - Static variable in class org.apache.oro.text.regex.OpCode
 
_PUNCT - Static variable in class org.apache.oro.text.regex.OpCode
 
_RANGE - Static variable in class org.apache.oro.text.regex.OpCode
 
_REF - Static variable in class org.apache.oro.text.regex.OpCode
 
_SANY - Static variable in class org.apache.oro.text.regex.OpCode
 
_SBOL - Static variable in class org.apache.oro.text.regex.OpCode
 
_SEOL - Static variable in class org.apache.oro.text.regex.OpCode
 
_SPACE - Static variable in class org.apache.oro.text.regex.OpCode
 
_STAR - Static variable in class org.apache.oro.text.regex.OpCode
 
_SUCCEED - Static variable in class org.apache.oro.text.regex.OpCode
 
_UNLESSM - Static variable in class org.apache.oro.text.regex.OpCode
 
_UPPER - Static variable in class org.apache.oro.text.regex.OpCode
 
_WHILEM - Static variable in class org.apache.oro.text.regex.OpCode
 
_XDIGIT - Static variable in class org.apache.oro.text.regex.OpCode
 
__CASE_INSENSITIVE - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__DEFAULT_LAST_MATCH_END_OFFSET - Static variable in class org.apache.oro.text.regex.Perl5Matcher
 
__EOS - Static variable in class org.apache.oro.text.regex.Perl5Matcher
 
__EXTENDED - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__GLOBAL - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__HEX_DIGIT - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__INITIAL_NUM_OFFSETS - Static variable in class org.apache.oro.text.regex.Perl5Matcher
 
__KEEP - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__MAX_GROUPS - Static variable in class org.apache.oro.text.regex.Perl5Substitution
The maximum number of groups supported by interpolation.
__MULTILINE - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__NONNULL - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__OPCODE_STORAGE_SIZE - Static variable in class org.apache.oro.text.regex.Perl5Substitution
The initial size and unit of growth for the _subOpCodes array.
__READ_ONLY - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__SIMPLE - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__SINGLELINE - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__SPSTART - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__TRYAGAIN - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__WORSTCASE - Static variable in class org.apache.oro.text.regex.Perl5Compiler
 
__addElement(int) - Method in class org.apache.oro.text.regex.Perl5Substitution
 
__beginMatchOffsets - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__bol - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__caseInsensitive - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__compare(char[], int, char[], int, int) - Static method in class org.apache.oro.text.regex.Perl5Matcher
 
__cost - Variable in class org.apache.oro.text.regex.Perl5Compiler
 
__currentOffset - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__currentRep - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__emitArgNode(char, char) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__emitCode(char) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__emitNode(char) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__endMatchOffsets - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__endOffset - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__eol - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__expSize - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__findFirst(char[], int, int, char[]) - Static method in class org.apache.oro.text.regex.Perl5Matcher
 
__getNextChar() - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__hashPOSIX - Static variable in class org.apache.oro.text.regex.Perl5Compiler
Lookup table for POSIX character class names
__initInterpreterGlobals(Perl5Pattern, char[], int, int, int) - Method in class org.apache.oro.text.regex.Perl5Matcher
 
__input - Variable in class org.apache.oro.text.regex.Perl5Compiler
 
__input - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__inputOffset - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__interpret(Perl5Pattern, char[], int, int, int) - Method in class org.apache.oro.text.regex.Perl5Matcher
 
__isComplexRepetitionOp(char[], int) - Static method in class org.apache.oro.text.regex.Perl5Compiler
 
__isInterpolationCharacter(char) - Static method in class org.apache.oro.text.regex.Perl5Substitution
 
__isSimpleRepetitionOp(char) - Static method in class org.apache.oro.text.regex.Perl5Compiler
 
__lastMatchInputEndOffset - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__lastMatchResult - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__lastParen - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__lastSuccess - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__match(int) - Method in class org.apache.oro.text.regex.Perl5Matcher
 
__matchUnicodeClass(char, char[], int, char) - Method in class org.apache.oro.text.regex.Perl5Matcher
 
__modifierFlags - Variable in class org.apache.oro.text.regex.Perl5Compiler
 
__multiline - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__numParentheses - Variable in class org.apache.oro.text.regex.Perl5Compiler
 
__numParentheses - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__originalInput - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__parseAlternation(int[]) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__parseAtom(int[]) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__parseBranch(int[]) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__parseExpression(boolean, int[]) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__parseHex(char[], int, int, int[]) - Static method in class org.apache.oro.text.regex.Perl5Compiler
 
__parseOctal(char[], int, int, int[]) - Static method in class org.apache.oro.text.regex.Perl5Compiler
 
__parsePOSIX(boolean[]) - Method in class org.apache.oro.text.regex.Perl5Compiler
Parse POSIX epxression like [:foo:].
__parseRepetition(char[], int) - Static method in class org.apache.oro.text.regex.Perl5Compiler
 
__parseSubs(String) - Method in class org.apache.oro.text.regex.Perl5Substitution
 
__parseUnicodeClass() - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__popState() - Method in class org.apache.oro.text.regex.Perl5Matcher
 
__previousChar - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__program - Variable in class org.apache.oro.text.regex.Perl5Compiler
 
__program - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__programAddOperatorTail(int, int) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__programAddTail(int, int) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__programInsertOperator(char, int) - Method in class org.apache.oro.text.regex.Perl5Compiler
 
__programSize - Variable in class org.apache.oro.text.regex.Perl5Compiler
 
__pushState(int) - Method in class org.apache.oro.text.regex.Perl5Matcher
 
__repeat(int, int) - Method in class org.apache.oro.text.regex.Perl5Matcher
 
__sawBackreference - Variable in class org.apache.oro.text.regex.Perl5Compiler
 
__setLastMatchResult() - Method in class org.apache.oro.text.regex.Perl5Matcher
 
__setModifierFlag(char[], char) - Static method in class org.apache.oro.text.regex.Perl5Compiler
 
__stack - Variable in class org.apache.oro.text.regex.Perl5Matcher
 
__tryExpression(int) - Method in class org.apache.oro.text.regex.Perl5Matcher
 
_anchor - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_array - Variable in class org.apache.oro.text.regex.CharStringPointer
 
_back - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_beginGroupOffset - Variable in class org.apache.oro.text.regex.Perl5MatchResult
Arrays containing the beginning and end offsets of the pattern groups matched within the actual matched pattern contained in the variable match.
_beginOffset - Variable in class org.apache.oro.text.regex.PatternMatcherInput
 
_calcSub(StringBuffer, MatchResult) - Method in class org.apache.oro.text.regex.Perl5Substitution
 
_currentOffset - Variable in class org.apache.oro.text.regex.PatternMatcherInput
 
_decrement(int) - Method in class org.apache.oro.text.regex.CharStringPointer
 
_decrement() - Method in class org.apache.oro.text.regex.CharStringPointer
 
_endGroupOffset - Variable in class org.apache.oro.text.regex.Perl5MatchResult
Arrays containing the beginning and end offsets of the pattern groups matched within the actual matched pattern contained in the variable match.
_endOffset - Variable in class org.apache.oro.text.regex.PatternMatcherInput
 
_expression - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_finalInterpolatedSub(MatchResult) - Method in class org.apache.oro.text.regex.Perl5Substitution
 
_getArg1(char[], int) - Static method in class org.apache.oro.text.regex.OpCode
 
_getArg2(char[], int) - Static method in class org.apache.oro.text.regex.OpCode
 
_getLength() - Method in class org.apache.oro.text.regex.CharStringPointer
 
_getNext(char[], int) - Static method in class org.apache.oro.text.regex.OpCode
 
_getNextOffset(char[], int) - Static method in class org.apache.oro.text.regex.OpCode
 
_getNextOperator(int) - Static method in class org.apache.oro.text.regex.OpCode
 
_getOffset() - Method in class org.apache.oro.text.regex.CharStringPointer
 
_getOperand(int) - Static method in class org.apache.oro.text.regex.OpCode
 
_getPrevOperator(int) - Static method in class org.apache.oro.text.regex.OpCode
 
_getValue() - Method in class org.apache.oro.text.regex.CharStringPointer
 
_getValue(int) - Method in class org.apache.oro.text.regex.CharStringPointer
 
_getValueRelative(int) - Method in class org.apache.oro.text.regex.CharStringPointer
 
_increment(int) - Method in class org.apache.oro.text.regex.CharStringPointer
 
_increment() - Method in class org.apache.oro.text.regex.CharStringPointer
 
_isAtEnd() - Method in class org.apache.oro.text.regex.CharStringPointer
 
_isCaseInsensitive - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_isExpensive - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_isInArray(char, char[], int) - Static method in class org.apache.oro.text.regex.OpCode
 
_isWordCharacter(char) - Static method in class org.apache.oro.text.regex.OpCode
 
_lastInterpolation - Variable in class org.apache.oro.text.regex.Perl5Substitution
 
_lastLocation - Variable in class org.apache.oro.text.regex.Perl5Repetition
 
_lastRepetition - Variable in class org.apache.oro.text.regex.Perl5Repetition
 
_match - Variable in class org.apache.oro.text.regex.Perl5MatchResult
The entire string that matched the pattern.
_matchBeginOffset - Variable in class org.apache.oro.text.regex.PatternMatcherInput
 
_matchBeginOffset - Variable in class org.apache.oro.text.regex.Perl5MatchResult
The character offset into the line or stream where the match begins.
_matchEndOffset - Variable in class org.apache.oro.text.regex.PatternMatcherInput
 
_max - Variable in class org.apache.oro.text.regex.Perl5Repetition
 
_min - Variable in class org.apache.oro.text.regex.Perl5Repetition
 
_minLength - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_minMod - Variable in class org.apache.oro.text.regex.Perl5Repetition
 
_mustString - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_mustUtility - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_next - Variable in class org.apache.oro.text.regex.Perl5Repetition
 
_numInstances - Variable in class org.apache.oro.text.regex.Perl5Repetition
 
_numInterpolations - Variable in class org.apache.oro.text.regex.Perl5Substitution
 
_numParentheses - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_offset - Variable in class org.apache.oro.text.regex.CharStringPointer
 
_opLengthOne - Static variable in class org.apache.oro.text.regex.OpCode
 
_opLengthVaries - Static variable in class org.apache.oro.text.regex.OpCode
 
_opType - Static variable in class org.apache.oro.text.regex.OpCode
 
_operandLength - Static variable in class org.apache.oro.text.regex.OpCode
 
_options - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_originalBuffer - Variable in class org.apache.oro.text.regex.PatternMatcherInput
 
_originalCharInput - Variable in class org.apache.oro.text.regex.PatternMatcherInput
 
_originalStringInput - Variable in class org.apache.oro.text.regex.PatternMatcherInput
 
_parenFloor - Variable in class org.apache.oro.text.regex.Perl5Repetition
 
_postDecrement() - Method in class org.apache.oro.text.regex.CharStringPointer
 
_postIncrement() - Method in class org.apache.oro.text.regex.CharStringPointer
 
_printOperator(char[], int, StringBuffer) - Static method in class org.apache.oro.text.regex.Perl5Debug
 
_program - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_scan - Variable in class org.apache.oro.text.regex.Perl5Repetition
 
_setOffset(int) - Method in class org.apache.oro.text.regex.CharStringPointer
 
_startClassOffset - Variable in class org.apache.oro.text.regex.Perl5Pattern
 
_startString - Variable in class org.apache.oro.text.regex.Perl5Pattern