niagara-ax/decompiled/org/apache/oro/text/regex/PatternCompiler.java
2026-03-17 13:31:18 -07:00

12 lines
356 B
Java

package org.apache.oro.text.regex;
public interface PatternCompiler {
Pattern compile(String str) throws MalformedPatternException;
Pattern compile(String str, int i) throws MalformedPatternException;
Pattern compile(char[] cArr) throws MalformedPatternException;
Pattern compile(char[] cArr, int i) throws MalformedPatternException;
}