Package org.dru.clay.util

Examples of org.dru.clay.util.FileMatcherPredicate


    public static <T> Predicate<T> not(final Predicate<T> predicate) {
        return new NotPredicate<T>(predicate);
    }
   
    public static Predicate<String> pattern(String pattern) {
      return new FileMatcherPredicate(pattern);
    }
View Full Code Here

TOP

Related Classes of org.dru.clay.util.FileMatcherPredicate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.