public class MatchRecognizeRegExRepeat extends Object implements Serializable
Constructor and Description |
---|
MatchRecognizeRegExRepeat()
Ctor.
|
MatchRecognizeRegExRepeat(Expression low,
Expression high,
Expression single)
Ctor.
|
Modifier and Type | Method and Description |
---|---|
Expression |
getHigh()
Returns the high endpoint.
|
Expression |
getLow()
Returns the low endpoint.
|
Expression |
getSingle()
Returns the exact-num-matches endpoint.
|
void |
setHigh(Expression high)
Sets the high endpoint.
|
void |
setLow(Expression low)
Sets the low endpoint.
|
void |
setSingle(Expression single)
Sets the exact-num-matches endpoint.
|
void |
writeEPL(StringWriter writer)
Render as EPL.
|
public MatchRecognizeRegExRepeat()
public MatchRecognizeRegExRepeat(Expression low, Expression high, Expression single)
low
- low endpoint or nullhigh
- high endpoint or nullsingle
- exact-matches repetition, should be null if low or high is providedpublic Expression getLow()
public void setLow(Expression low)
low
- low endpointpublic Expression getHigh()
public void setHigh(Expression high)
high
- high endpointpublic Expression getSingle()
public void setSingle(Expression single)
single
- exact-num-matches endpointpublic void writeEPL(StringWriter writer)
writer
- to write to