public abstract class FilePathPattern
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static FilePathPattern |
fromGlob(java.lang.String globPattern)
Matches paths using a simple glob-style pattern.
|
abstract boolean |
matches(nl.weeaboo.filesystem.FilePath path) |
public static FilePathPattern fromGlob(java.lang.String globPattern)
| * | Matches a sequence of zero or more characters excluding '/' |
| ** | Matches a sequence of zero or more characters |
public abstract boolean matches(nl.weeaboo.filesystem.FilePath path)
true if the given path matches this pattern.