-
- 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
如果,并且只有当路径匹配该匹配器的模式
-
-