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

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

package com.janetfilter.core.rulers;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy