Package ch.powerunit.matchers.file

Examples of ch.powerunit.matchers.file.Path2FileMatcher


   * @param matcher
   *            the matcher on File.
   * @return the matcher on Path.
   */
  default Matcher<Path> pathMatchedAsFile(Matcher<? super File> matcher) {
    return new Path2FileMatcher(matcher);
  }
View Full Code Here


     * @param matcher
     *            the matcher on File.
     * @return the matcher on Path.
     */
    default Matcher<Path> pathMatchedAsFile(Matcher<? super File> matcher) {
        return new Path2FileMatcher(matcher);
    }
View Full Code Here

TOP

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

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.