scouter.util.matcher.CommaSeparatedChainedStrMatcher Maven / Gradle / Ivy
package scouter.util.matcher;
/**
* @author Gun Lee ([email protected]) on 2017. 7. 8.
*/
public class CommaSeparatedChainedStrMatcher extends ChainedStrMatcher {
public CommaSeparatedChainedStrMatcher(String patterns) {
super(patterns, ",");
}
}