Uses of Interface
org.apache.oro.text.regex.Pattern
-
Packages that use Pattern Package Description org.apache.oro.text org.apache.oro.text.perl org.apache.oro.text.regex -
-
Uses of Pattern in org.apache.oro.text
Methods in org.apache.oro.text that return Pattern Modifier and Type Method Description (package private) Pattern
GenericPatternCache. addPattern(java.lang.String expression)
Same as callingPattern
GenericPatternCache. addPattern(java.lang.String expression, int options)
Adds a pattern to the cache and returns the compiled pattern.Pattern
PatternCache. addPattern(java.lang.String expression, int options)
Adds a pattern to the cache and returns the compiled pattern.Pattern
GenericPatternCache. getPattern(java.lang.String expression)
Same as callingPattern
GenericPatternCache. getPattern(java.lang.String expression, int options)
This method fetches a pattern from the cache.Pattern
PatternCache. getPattern(java.lang.String expression)
This method fetches a pattern from the cache.Pattern
PatternCache. getPattern(java.lang.String expression, int options)
This method fetches a pattern from the cache. -
Uses of Pattern in org.apache.oro.text.perl
Fields in org.apache.oro.text.perl declared as Pattern Modifier and Type Field Description private Pattern
Perl5Util. __matchPattern
The compiled match expression parsing regular expression.Methods in org.apache.oro.text.perl that return Pattern Modifier and Type Method Description private Pattern
Perl5Util. __parseMatchExpression(java.lang.String pat)
Parses a match expression and returns a compiled pattern. -
Uses of Pattern in org.apache.oro.text.regex
Classes in org.apache.oro.text.regex that implement Pattern Modifier and Type Class Description class
Perl5Pattern
An implementation of the Pattern interface for Perl5 regular expressions.Methods in org.apache.oro.text.regex that return Pattern Modifier and Type Method Description Pattern
PatternCompiler. compile(char[] pattern)
Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.Pattern
PatternCompiler. compile(char[] pattern, int options)
Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.Pattern
PatternCompiler. compile(java.lang.String pattern)
Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.Pattern
PatternCompiler. compile(java.lang.String pattern, int options)
Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.Pattern
Perl5Compiler. compile(char[] pattern)
Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);Pattern
Perl5Compiler. compile(char[] pattern, int options)
Compiles a Perl5 regular expression into a Perl5Pattern instance that can be used by a Perl5Matcher object to perform pattern matching.Pattern
Perl5Compiler. compile(java.lang.String pattern)
Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);Pattern
Perl5Compiler. compile(java.lang.String pattern, int options)
Compiles a Perl5 regular expression into a Perl5Pattern instance that can be used by a Perl5Matcher object to perform pattern matching.Methods in org.apache.oro.text.regex with parameters of type Pattern Modifier and Type Method Description boolean
PatternMatcher. contains(char[] input, Pattern pattern)
Determines if a string (represented as a char[]) contains a pattern.boolean
PatternMatcher. contains(java.lang.String input, Pattern pattern)
Determines if a string contains a pattern.boolean
PatternMatcher. contains(PatternMatcherInput input, Pattern pattern)
Determines if the contents of a PatternMatcherInput, starting from the current offset of the input contains a pattern.boolean
Perl5Matcher. contains(char[] in, Pattern pattern)
Determines if a string (represented as a char[]) contains a pattern.boolean
Perl5Matcher. contains(java.lang.String input, Pattern pattern)
Determines if a string contains a pattern.boolean
Perl5Matcher. contains(PatternMatcherInput input, Pattern pattern)
Determines if the contents of a PatternMatcherInput, starting from the current offset of the input contains a pattern.boolean
PatternMatcher. matches(char[] input, Pattern pattern)
Determines if a string (represented as a char[]) exactly matches a given pattern.boolean
PatternMatcher. matches(java.lang.String input, Pattern pattern)
Determines if a string exactly matches a given pattern.boolean
PatternMatcher. matches(PatternMatcherInput input, Pattern pattern)
Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.boolean
Perl5Matcher. matches(char[] in, Pattern pattern)
Determines if a string (represented as a char[]) exactly matches a given pattern.boolean
Perl5Matcher. matches(java.lang.String input, Pattern pattern)
Determines if a string exactly matches a given pattern.boolean
Perl5Matcher. matches(PatternMatcherInput input, Pattern pattern)
Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.boolean
PatternMatcher. matchesPrefix(char[] input, Pattern pattern)
Determines if a prefix of a string (represented as a char[]) matches a given pattern.boolean
PatternMatcher. matchesPrefix(char[] input, Pattern pattern, int offset)
Determines if a prefix of a string (represented as a char[]) matches a given pattern, starting from a given offset into the string.boolean
PatternMatcher. matchesPrefix(java.lang.String input, Pattern pattern)
Determines if a prefix of a string matches a given pattern.boolean
PatternMatcher. matchesPrefix(PatternMatcherInput input, Pattern pattern)
Determines if a prefix of a PatternMatcherInput instance matches a given pattern.boolean
Perl5Matcher. matchesPrefix(char[] input, Pattern pattern)
Determines if a prefix of a string (represented as a char[]) matches a given pattern.boolean
Perl5Matcher. matchesPrefix(char[] in, Pattern pattern, int offset)
Determines if a prefix of a string (represented as a char[]) matches a given pattern, starting from a given offset into the string.boolean
Perl5Matcher. matchesPrefix(java.lang.String input, Pattern pattern)
Determines if a prefix of a string matches a given pattern.boolean
Perl5Matcher. matchesPrefix(PatternMatcherInput input, Pattern pattern)
Determines if a prefix of a PatternMatcherInput instance matches a given pattern.
-