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

Packages that use WatchEvent.Modifier
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.Modifier in name.pachler.nio.file
 

Methods in name.pachler.nio.file with parameters of type WatchEvent.Modifier
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.Modifier in name.pachler.nio.file.ext
 

Fields in name.pachler.nio.file.ext declared as WatchEvent.Modifier
static WatchEvent.Modifier<Path> ExtendedWatchEventModifier.ACCURATE
          The ExtendedWatchEventModifier.ACCURATE modifier indicates that the WatchKey may not miss events under any circumstances.
static WatchEvent.Modifier<Path> ExtendedWatchEventModifier.FILE_TREE
          The ExtendedWatchEventModifier.FILE_TREE modifier makes a WatchKey recursive.