Package com.google.common.labs.matcher

Examples of com.google.common.labs.matcher.UrlMatcher


   * @param includePatterns
   * @param excludePatterns
   */
  public FilePatternMatcher(Iterable<String> includePatterns,
          Iterable<String> excludePatterns) {
    include = new UrlMatcher(false /* disable cache */);

    addPatterns(include, includePatterns);

    exclude = new UrlMatcher(false /* disable cache */);
    addPatterns(exclude, excludePatterns);
  }
View Full Code Here

TOP

Related Classes of com.google.common.labs.matcher.UrlMatcher

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.