net.sf.mmm.util.pattern.base.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mmm-util-pattern Show documentation
Show all versions of mmm-util-pattern Show documentation
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 */
/**
* Contains public implementations of the {@link net.sf.mmm.util.pattern.api.PatternCompiler} interface for different
* syntax such as java-regex-, glob- and path-patterns.
* Pattern-Util Base
Besides the {@link net.sf.mmm.util.pattern.base.RegexPatternCompiler} that only delegates
* to {@link java.util.regex.Pattern#compile(String)} there is also
* {@link net.sf.mmm.util.pattern.base.GlobPatternCompiler} and {@link net.sf.mmm.util.pattern.base.PathPatternCompiler}
* .
*/
package net.sf.mmm.util.pattern.base;