Class RegexLeaf
- java.lang.Object
-
- net.sourceforge.plantuml.command.regex.RegexLeaf
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
count()
Map<String,RegexPartialMatch>
createPartialMatch(Iterator<String> it)
static RegexLeaf
end()
long
getFoxSignature()
String
getName()
String
getPattern()
boolean
match(StringLocated full)
RegexResult
matcher(String full)
static RegexLeaf
spaceOneOrMore()
static RegexLeaf
spaceZeroOrMore()
static RegexLeaf
start()
String
toString()
-
-
-
Method Detail
-
spaceZeroOrMore
public static RegexLeaf spaceZeroOrMore()
-
spaceOneOrMore
public static RegexLeaf spaceOneOrMore()
-
start
public static RegexLeaf start()
-
end
public static RegexLeaf end()
-
getName
public String getName()
-
getPattern
public String getPattern()
- Specified by:
getPattern
in interfaceIRegex
-
createPartialMatch
public Map<String,RegexPartialMatch> createPartialMatch(Iterator<String> it)
- Specified by:
createPartialMatch
in interfaceIRegex
-
match
public boolean match(StringLocated full)
-
matcher
public RegexResult matcher(String full)
-
getFoxSignature
public long getFoxSignature()
-
-