Package com.cloudera.cdk.morphline.shaded.org.apache.hadoop.fs

Examples of com.cloudera.cdk.morphline.shaded.org.apache.hadoop.fs.GlobPattern


/**
* Tests for glob patterns
*/
public class GlobPatternTest {
  private void assertMatch(boolean yes, String glob, String...input) {
    GlobPattern pattern = new GlobPattern(glob);

    for (String s : input) {
      boolean result = pattern.matches(s);
      assertTrue(glob +" should"+ (yes ? "" : " not") +" match "+ s,
                 yes ? result : !result);
    }
  }
View Full Code Here

TOP

Related Classes of com.cloudera.cdk.morphline.shaded.org.apache.hadoop.fs.GlobPattern

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.