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) PatternGenericPatternCache. addPattern(java.lang.String expression)Same as callingPatternGenericPatternCache. addPattern(java.lang.String expression, int options)Adds a pattern to the cache and returns the compiled pattern.PatternPatternCache. addPattern(java.lang.String expression, int options)Adds a pattern to the cache and returns the compiled pattern.PatternGenericPatternCache. getPattern(java.lang.String expression)Same as callingPatternGenericPatternCache. getPattern(java.lang.String expression, int options)This method fetches a pattern from the cache.PatternPatternCache. getPattern(java.lang.String expression)This method fetches a pattern from the cache.PatternPatternCache. 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 PatternPerl5Util. __matchPatternThe compiled match expression parsing regular expression.Methods in org.apache.oro.text.perl that return Pattern Modifier and Type Method Description private PatternPerl5Util. __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 classPerl5PatternAn implementation of the Pattern interface for Perl5 regular expressions.Methods in org.apache.oro.text.regex that return Pattern Modifier and Type Method Description PatternPatternCompiler. compile(char[] pattern)Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.PatternPatternCompiler. 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.PatternPatternCompiler. 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.PatternPatternCompiler. 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.PatternPerl5Compiler. compile(char[] pattern)Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);PatternPerl5Compiler. 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.PatternPerl5Compiler. compile(java.lang.String pattern)Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);PatternPerl5Compiler. 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 booleanPatternMatcher. contains(char[] input, Pattern pattern)Determines if a string (represented as a char[]) contains a pattern.booleanPatternMatcher. contains(java.lang.String input, Pattern pattern)Determines if a string contains a pattern.booleanPatternMatcher. contains(PatternMatcherInput input, Pattern pattern)Determines if the contents of a PatternMatcherInput, starting from the current offset of the input contains a pattern.booleanPerl5Matcher. contains(char[] in, Pattern pattern)Determines if a string (represented as a char[]) contains a pattern.booleanPerl5Matcher. contains(java.lang.String input, Pattern pattern)Determines if a string contains a pattern.booleanPerl5Matcher. contains(PatternMatcherInput input, Pattern pattern)Determines if the contents of a PatternMatcherInput, starting from the current offset of the input contains a pattern.booleanPatternMatcher. matches(char[] input, Pattern pattern)Determines if a string (represented as a char[]) exactly matches a given pattern.booleanPatternMatcher. matches(java.lang.String input, Pattern pattern)Determines if a string exactly matches a given pattern.booleanPatternMatcher. matches(PatternMatcherInput input, Pattern pattern)Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.booleanPerl5Matcher. matches(char[] in, Pattern pattern)Determines if a string (represented as a char[]) exactly matches a given pattern.booleanPerl5Matcher. matches(java.lang.String input, Pattern pattern)Determines if a string exactly matches a given pattern.booleanPerl5Matcher. matches(PatternMatcherInput input, Pattern pattern)Determines if the contents of a PatternMatcherInput instance exactly matches a given pattern.booleanPatternMatcher. matchesPrefix(char[] input, Pattern pattern)Determines if a prefix of a string (represented as a char[]) matches a given pattern.booleanPatternMatcher. 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.booleanPatternMatcher. matchesPrefix(java.lang.String input, Pattern pattern)Determines if a prefix of a string matches a given pattern.booleanPatternMatcher. matchesPrefix(PatternMatcherInput input, Pattern pattern)Determines if a prefix of a PatternMatcherInput instance matches a given pattern.booleanPerl5Matcher. matchesPrefix(char[] input, Pattern pattern)Determines if a prefix of a string (represented as a char[]) matches a given pattern.booleanPerl5Matcher. 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.booleanPerl5Matcher. matchesPrefix(java.lang.String input, Pattern pattern)Determines if a prefix of a string matches a given pattern.booleanPerl5Matcher. matchesPrefix(PatternMatcherInput input, Pattern pattern)Determines if a prefix of a PatternMatcherInput instance matches a given pattern.
-