类 OrPathFilter
- java.lang.Object
-
- io.github.kylinhunter.commons.io.file.filter.AbstractPathFilter
-
- io.github.kylinhunter.commons.io.file.filter.OrPathFilter
-
- 所有已实现的接口:
PathFilter
public class OrPathFilter extends AbstractPathFilter
-
-
构造器概要
构造器 构造器 说明 OrPathFilter(PathFilter filter1, PathFilter filter2)OrPathFilter(java.util.List<PathFilter> fileFilters)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 java.nio.file.FileVisitResultaccept(java.nio.file.Path file, java.nio.file.attribute.BasicFileAttributes attributes)voidaddPathFilter(PathFilter... fileFilters)-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 io.github.kylinhunter.commons.io.file.filter.PathFilter
and, or
-
-
-
-
构造器详细资料
-
OrPathFilter
public OrPathFilter(java.util.List<PathFilter> fileFilters)
-
OrPathFilter
public OrPathFilter(PathFilter filter1, PathFilter filter2)
-
-
方法详细资料
-
addPathFilter
public void addPathFilter(PathFilter... fileFilters)
-
accept
public java.nio.file.FileVisitResult accept(java.nio.file.Path file, java.nio.file.attribute.BasicFileAttributes attributes)- 指定者:
accept在接口中PathFilter- 覆盖:
accept在类中AbstractPathFilter
-
-