Uses of Interface
java.nio.file.WatchEvent.Kind
-
Packages that use WatchEvent.Kind 软件包 描述 java.nio.file 定义Java虚拟机访问文件,文件属性和文件系统的接口和类。 -
-
Uses of WatchEvent.Kind in java.nio.file
Fields in java.nio.file declared as WatchEvent.Kind Modifier and Type Field 描述 static WatchEvent.Kind<Path>
StandardWatchEventKinds. ENTRY_CREATE
创建目录条目。static WatchEvent.Kind<Path>
StandardWatchEventKinds. ENTRY_DELETE
目录条目已删除。static WatchEvent.Kind<Path>
StandardWatchEventKinds. ENTRY_MODIFY
目录条目修改。static WatchEvent.Kind<Object>
StandardWatchEventKinds. OVERFLOW
一个特殊事件,表明事件可能已丢失或丢弃。Methods in java.nio.file that return WatchEvent.Kind Modifier and Type 方法 描述 WatchEvent.Kind<T>
WatchEvent. kind()
返回事件类型。Methods in java.nio.file with parameters of type WatchEvent.Kind Modifier and Type 方法 描述 default WatchKey
Path. register(WatchService watcher, WatchEvent.Kind<?>... events)
使用手表服务注册此路径所在的文件。WatchKey
Path. register(WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers)
使用手表服务注册此路径所在的文件。WatchKey
Watchable. register(WatchService watcher, WatchEvent.Kind<?>... events)
用手表服务注册一个对象。WatchKey
Watchable. register(WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers)
用手表服务注册一个对象。
-