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

com.tngtech.jgiven.impl.util.FilePredicates Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.tngtech.jgiven.impl.util;

import java.io.File;

import com.google.common.base.Predicate;

public class FilePredicates {

    public static Predicate endsWith( final String suffix ) {
        return new Predicate() {
            @Override
            public boolean apply( File input ) {
                return input.getName().endsWith( suffix );
            }
        };
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy