net.amygdalum.patternsearchalgorithms.pattern.bytes.MatcherFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of patternsearchalgorithms Show documentation
Show all versions of patternsearchalgorithms Show documentation
Searching and Matching Regular Expressions
package net.amygdalum.patternsearchalgorithms.pattern.bytes;
import net.amygdalum.patternsearchalgorithms.pattern.Matcher;
import net.amygdalum.util.io.ByteProvider;
public interface MatcherFactory {
Matcher newMatcher(ByteProvider input);
}