Uses of Interface
name.pachler.nio.file.WatchEvent.Kind

Packages that use WatchEvent.Kind
name.pachler.nio.file The name.pachler.nio.file package provides source-compatible implementation of JDK7's WatchService API. 
name.pachler.nio.file.ext Provides non-standard ExtendedWatchEventKind class with extended watch event kinds and modifier tags that enable non-standard features, like recursive watches and file rename tracking. 
 

Uses of WatchEvent.Kind in name.pachler.nio.file
 

Fields in name.pachler.nio.file declared as WatchEvent.Kind
static WatchEvent.Kind<Path> StandardWatchEventKind.ENTRY_CREATE
          Indicates that a file has been created under the watched path.
static WatchEvent.Kind<Path> StandardWatchEventKind.ENTRY_DELETE
          Indicates that a file has been deleted under the watched path.
static WatchEvent.Kind<Path> StandardWatchEventKind.ENTRY_MODIFY
          Indicates that a file under the watched path has been modified.
static WatchEvent.Kind<java.lang.Void> StandardWatchEventKind.OVERFLOW
          Indicates queue overflow in the WatchService.
 

Methods in name.pachler.nio.file that return WatchEvent.Kind
abstract  WatchEvent.Kind<T> WatchEvent.kind()
           
 

Methods in name.pachler.nio.file with parameters of type WatchEvent.Kind
abstract  WatchKey Path.register(WatchService watcher, WatchEvent.Kind<?>... events)
           
 WatchKey Watchable.register(WatchService watcher, WatchEvent.Kind<?>... events)
          Registers the file system path (a directory) with the given WatchService and provides a WatchKey as a handle for that registration.
abstract  WatchKey Path.register(WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers)
           
 WatchKey Watchable.register(WatchService watcher, WatchEvent.Kind<?>[] events, WatchEvent.Modifier... modifiers)
          Registers the file system path (a directory) with the given WatchServiceand provides a WatchKey as a handle for that registration.
 

Uses of WatchEvent.Kind in name.pachler.nio.file.ext
 

Fields in name.pachler.nio.file.ext declared as WatchEvent.Kind
static WatchEvent.Kind<Path> ExtendedWatchEventKind.ENTRY_RENAME_FROM
          Indicates the old file name of a renamed file.
static WatchEvent.Kind<Path> ExtendedWatchEventKind.ENTRY_RENAME_TO
          Indicates the new file name of a renamed file.
static WatchEvent.Kind<java.lang.Void> ExtendedWatchEventKind.KEY_INVALID
          Indicates that the given WatchKey has become invalid.