Package ch.powerunit.matchers.file

Examples of ch.powerunit.matchers.file.FileNameMatcher


   * @param matcher
   *            the matcher on the name.
   * @return the matcher on the file.
   */
  default Matcher<File> fileNamed(Matcher<? super String> matcher) {
    return new FileNameMatcher(matcher);
  }
View Full Code Here


     * @param matcher
     *            the matcher on the name.
     * @return the matcher on the file.
     */
    default Matcher<File> fileNamed(Matcher<? super String> matcher) {
        return new FileNameMatcher(matcher);
    }
View Full Code Here

TOP

Related Classes of ch.powerunit.matchers.file.FileNameMatcher

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.