Uses of Interface
org.acmsl.regexpplugin.Pattern

Packages that use Pattern
org.acmsl.regexpplugin   
org.acmsl.regexpplugin.gnuregexp   
org.acmsl.regexpplugin.jakartaoro   
org.acmsl.regexpplugin.jakartaregexp   
 

Uses of Pattern in org.acmsl.regexpplugin
 

Methods in org.acmsl.regexpplugin that return Pattern
 Pattern Compiler.compile(java.lang.String regexp)
          Compiles given regular expression and creates a Pattern object to apply such rule on concrete text contents.
 

Methods in org.acmsl.regexpplugin with parameters of type Pattern
 boolean Matcher.contains(java.lang.String text, Pattern pattern)
          Checks if given text contains specified pattern.
 

Uses of Pattern in org.acmsl.regexpplugin.gnuregexp
 

Classes in org.acmsl.regexpplugin.gnuregexp that implement Pattern
 class PatternGNUAdapter
          Adapts GNU Regexp 1.1.4 RE objects to follow the generic Pattern interface defined in this API.
 

Methods in org.acmsl.regexpplugin.gnuregexp that return Pattern
 Pattern CompilerGNUAdapter.compile(java.lang.String regexp)
          Compiles given regular expression and creates a Pattern object to apply such rule on concrete text contents.
 

Methods in org.acmsl.regexpplugin.gnuregexp with parameters of type Pattern
 boolean MatcherGNUAdapter.contains(java.lang.String text, Pattern pattern)
          Checks if given text contains specified pattern.
 

Uses of Pattern in org.acmsl.regexpplugin.jakartaoro
 

Classes in org.acmsl.regexpplugin.jakartaoro that implement Pattern
 class PatternOROAdapter
          Adapts jakarta ORO Pattern objects to follow the generic interface defined in this API.
 

Methods in org.acmsl.regexpplugin.jakartaoro that return Pattern
 Pattern Perl5CompilerOROAdapter.compile(java.lang.String regexp)
          Compiles given regular expression and creates a Pattern object to apply such rule on concrete text contents.
 Pattern AwkCompilerOROAdapter.compile(java.lang.String regexp)
          Compiles given regular expression and creates a Pattern object to apply such rule on concrete text contents.
 

Methods in org.acmsl.regexpplugin.jakartaoro with parameters of type Pattern
 boolean Perl5MatcherOROAdapter.contains(java.lang.String text, Pattern pattern)
          Checks if given text contains specified pattern.
 boolean AwkMatcherOROAdapter.contains(java.lang.String text, Pattern pattern)
          Checks if given text contains specified pattern.
 

Uses of Pattern in org.acmsl.regexpplugin.jakartaregexp
 

Classes in org.acmsl.regexpplugin.jakartaregexp that implement Pattern
 class PatternRegexpAdapter
          Adapts Jakarta Regexp REProgram objects to follow the generic Pattern interface defined in this API.
 

Methods in org.acmsl.regexpplugin.jakartaregexp that return Pattern
 Pattern CompilerRegexpAdapter.compile(java.lang.String regexp)
          Compiles given regular expression and creates a Pattern object to apply such rule on concrete text contents.
 

Methods in org.acmsl.regexpplugin.jakartaregexp with parameters of type Pattern
 boolean MatcherRegexpAdapter.contains(java.lang.String text, Pattern pattern)
          Checks if given text contains specified pattern.
 



Copyright © 2003 ACM S.L.. All Rights Reserved.