use of org.apache.hadoop.fs.GlobPattern in project hadoop by apache.
the class Name method prepare.
@Override
public void prepare() throws IOException {
String argPattern = getArgument(1);
if (!caseSensitive) {
argPattern = StringUtils.toLowerCase(argPattern);
}
globPattern = new GlobPattern(argPattern);
}
Aggregations