com.venky.parse.composite.ZeroOrMore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Commonly used programming tasks in java
package com.venky.parse.composite;
import com.venky.parse.Rule;
public class ZeroOrMore extends Multiple{
public ZeroOrMore(Rule ruleTemplate) {
super(ruleTemplate,0);
}
}