All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.janetfilter.core.rulers.KeywordRuler Maven / Gradle / Ivy

The newest version!
package com.janetfilter.core.rulers;

public class KeywordRuler implements Ruler {
    @Override
    public boolean test(String rule, String content) {
        return content.contains(rule);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy