querqy.rewrite.commonrules.model.RulesCollectionBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querqy-core Show documentation
Show all versions of querqy-core Show documentation
Querqy library for query rewriting: Querqy Core
package querqy.rewrite.commonrules.model;
public interface RulesCollectionBuilder {
void addRule(Input input, Instructions instructions);
RulesCollection build();
}