public class GlobPatternCompiler extends AbstractGlobPatternCompiler
PatternCompiler
interface that compiles
glob-patterns. A glob-pattern is a pattern, where only the wildcard characters '*'
and '?'
are treated special. The asterisk ('*'
) can match any string including the empty string and the questionmark
('?'
) can match any single character. A*bc?e
matches Abcde
or AFOObarbcxe
but NOT abcde
or Abce
.Modifier and Type | Field and Description |
---|---|
static PatternCompiler |
INSTANCE
A singleton instance of this implementation.
|
Constructor and Description |
---|
GlobPatternCompiler()
The constructor.
|
public static final PatternCompiler INSTANCE
Copyright © 2001–2016 mmm-Team. All rights reserved.