LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
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
global class Matcher {
    global Object clone() { }
    global Integer end(Integer grp) { }
    global Integer end() { }
    global Boolean find(Integer start) { }
    global Boolean find() { }
    global String group(Integer start) { }
    global String group() { }
    global Integer groupCount() { }
    global Boolean hasAnchoringBounds() { }
    global Boolean hasTransparentBounds() { }
    global Boolean hitEnd() { }
    global Boolean lookingAt() { }
    global Boolean matches() { }
    global System.Pattern pattern() { }
    global static String quoteReplacement(String s) { }
    global System.Matcher region(Integer start, Integer ending) { }
    global Integer regionEnd() { }
    global Integer regionStart() { }
    global String replaceAll(String replacement) { }
    global String replaceFirst(String replacement) { }
    global Boolean requireEnd() { }
    global System.Matcher reset(String input) { }
    global System.Matcher reset() { }
    global Integer start(Integer grp) { }
    global Integer start() { }
    global System.Matcher useAnchoringBounds(Boolean b) { }
    global System.Matcher usePattern(System.Pattern p) { }
    global System.Matcher useTransparentBounds(Boolean b) { }
 
}