blob: 19b25019e6007193fba498b679fd031409adeb5f (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
|
package java.util.regex;
public final class Matcher
implements java.util.regex.MatchResult
{
Matcher() { throw new RuntimeException("Stub!"); }
public java.util.regex.Matcher appendReplacement(java.lang.StringBuffer buffer, java.lang.String replacement) { throw new RuntimeException("Stub!"); }
public java.util.regex.Matcher reset() { throw new RuntimeException("Stub!"); }
public java.util.regex.Matcher reset(java.lang.CharSequence input) { throw new RuntimeException("Stub!"); }
public java.util.regex.Matcher usePattern(java.util.regex.Pattern pattern) { throw new RuntimeException("Stub!"); }
public java.util.regex.Matcher region(int start, int end) { throw new RuntimeException("Stub!"); }
public java.lang.StringBuffer appendTail(java.lang.StringBuffer buffer) { throw new RuntimeException("Stub!"); }
public java.lang.String replaceFirst(java.lang.String replacement) { throw new RuntimeException("Stub!"); }
public java.lang.String replaceAll(java.lang.String replacement) { throw new RuntimeException("Stub!"); }
public java.util.regex.Pattern pattern() { throw new RuntimeException("Stub!"); }
public boolean find(int start) { throw new RuntimeException("Stub!"); }
public boolean find() { throw new RuntimeException("Stub!"); }
public boolean lookingAt() { throw new RuntimeException("Stub!"); }
public boolean matches() { throw new RuntimeException("Stub!"); }
public static java.lang.String quoteReplacement(java.lang.String s) { throw new RuntimeException("Stub!"); }
public java.util.regex.MatchResult toMatchResult() { throw new RuntimeException("Stub!"); }
public java.util.regex.Matcher useAnchoringBounds(boolean value) { throw new RuntimeException("Stub!"); }
public boolean hasAnchoringBounds() { throw new RuntimeException("Stub!"); }
public java.util.regex.Matcher useTransparentBounds(boolean value) { throw new RuntimeException("Stub!"); }
public boolean hasTransparentBounds() { throw new RuntimeException("Stub!"); }
public int regionStart() { throw new RuntimeException("Stub!"); }
public int regionEnd() { throw new RuntimeException("Stub!"); }
public boolean requireEnd() { throw new RuntimeException("Stub!"); }
public boolean hitEnd() { throw new RuntimeException("Stub!"); }
protected void finalize() throws java.lang.Throwable { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public int end() { throw new RuntimeException("Stub!"); }
public int end(int group) { throw new RuntimeException("Stub!"); }
public java.lang.String group() { throw new RuntimeException("Stub!"); }
public java.lang.String group(int group) { throw new RuntimeException("Stub!"); }
public int groupCount() { throw new RuntimeException("Stub!"); }
public int start() { throw new RuntimeException("Stub!"); }
public int start(int group) throws java.lang.IllegalStateException { throw new RuntimeException("Stub!"); }
}
|