All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.mmm.util.pattern.base.WildcardGlobPatternCompiler Maven / Gradle / Ivy

Go to download

provides pattern matching abstraction to flexibly choose between regex and glob.

The newest version!
/* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
 * http://www.apache.org/licenses/LICENSE-2.0 */
package net.sf.mmm.util.pattern.base;

import net.sf.mmm.util.pattern.api.PatternCompiler;

/**
 * This class behaves like {@link GlobPatternCompiler} but requires wildcards in the pattern.
 *
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.0.1
 */
public class WildcardGlobPatternCompiler extends AbstractGlobPatternCompiler {

  /** A singleton instance of this implementation. */
  public static final PatternCompiler INSTANCE = new WildcardGlobPatternCompiler();

  /**
   * The constructor.
   */
  public WildcardGlobPatternCompiler() {

    super();
  }

  @Override
  protected boolean isRequireWildcard() {

    return true;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy