Class Matcher2
- java.lang.Object
-
- net.sourceforge.plantuml.command.regex.Matcher2
-
public class Matcher2 extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Matcher2
build(Pattern pattern, CharSequence input)
int
end()
boolean
find()
String
group()
String
group(int n)
int
groupCount()
boolean
matches()
int
start()
-
-
-
Method Detail
-
build
public static Matcher2 build(Pattern pattern, CharSequence input)
-
matches
public boolean matches()
-
group
public String group(int n)
-
group
public String group()
-
groupCount
public int groupCount()
-
find
public boolean find()
-
end
public int end()
-
start
public int start()
-
-