1 package org.apache.oro.text.regex; 2 3 59 60 109 public interface PatternCompiler { 110 120 public Pattern compile(String pattern) throws MalformedPatternException; 121 122 123 140 public Pattern compile(String pattern, int options) 141 throws MalformedPatternException; 142 143 144 154 public Pattern compile(char[] pattern) throws MalformedPatternException; 155 156 157 174 public Pattern compile(char[] pattern, int options) 175 throws MalformedPatternException; 176 177 } 178 | Popular Tags |