-
- Functional Interface:
- 这是一个功能接口,因此可以用作lambda表达式或方法引用的赋值目标。
@FunctionalInterface public interface PathMatcher
由在路径上执行匹配操作的对象实现的接口。- 从以下版本开始:
- 1.7
- 另请参见:
-
FileSystem.getPathMatcher(java.lang.String)
,Files.newDirectoryStream(Path,String)
-
-
方法详细信息
-
matches
boolean matches(Path path)
告知给定路径是否匹配此匹配器的模式。- 参数
-
path
- 匹配的路径 - 结果
-
true
当且仅当路径与此匹配器的模式匹配时
-
-