Package com.logicaldoc.core.automation
Class RegexTool.RegexResult
- java.lang.Object
-
- com.logicaldoc.core.automation.RegexTool.RegexResult
-
-
Constructor Summary
Constructors Constructor Description RegexResult(int start, int end, String group)
-
-
-
Field Detail
-
start
public int start
- See Also:
getStart()
-
end
public int end
- See Also:
getEnd()
-
group
public String group
- See Also:
getGroup()
-
-
Constructor Detail
-
RegexResult
public RegexResult(int start, int end, String group)
- Parameters:
start
- seegetStart()
end
- seegetEnd()
group
- seegetGroup()
-
-
Method Detail
-
getGroup
public String getGroup()
- Returns:
- the captured group
-
getStart
public int getStart()
- Returns:
- the capture group's start position
-
getEnd
public int getEnd()
- Returns:
- the capture group's end position
-
-