blob: 64a550a9d1a5c392df0a5e94384f555ba9999359 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package java.util.regex;
public final class Pattern
implements java.io.Serializable
{
Pattern() { throw new RuntimeException("Stub!"); }
public java.util.regex.Matcher matcher(java.lang.CharSequence input) { throw new RuntimeException("Stub!"); }
public java.lang.String[] split(java.lang.CharSequence input, int limit) { throw new RuntimeException("Stub!"); }
public java.lang.String[] split(java.lang.CharSequence input) { throw new RuntimeException("Stub!"); }
public java.lang.String pattern() { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public int flags() { throw new RuntimeException("Stub!"); }
public static java.util.regex.Pattern compile(java.lang.String regularExpression, int flags) throws java.util.regex.PatternSyntaxException { throw new RuntimeException("Stub!"); }
public static java.util.regex.Pattern compile(java.lang.String pattern) { throw new RuntimeException("Stub!"); }
public static boolean matches(java.lang.String regularExpression, java.lang.CharSequence input) { throw new RuntimeException("Stub!"); }
public static java.lang.String quote(java.lang.String string) { throw new RuntimeException("Stub!"); }
protected void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
public static final int CANON_EQ = 128;
public static final int CASE_INSENSITIVE = 2;
public static final int COMMENTS = 4;
public static final int DOTALL = 32;
public static final int LITERAL = 16;
public static final int MULTILINE = 8;
public static final int UNICODE_CASE = 64;
public static final int UNIX_LINES = 1;
}
|