com.legyver.fenxlib.widgets.filetree.scan.FileWatcherEventConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fenxlib.widgets.filetree Show documentation
Show all versions of fenxlib.widgets.filetree Show documentation
FileTree widget for Fenxlib projects
package com.legyver.fenxlib.widgets.filetree.scan;
/**
* Convenience constants for case statements corresponding to {@link java.nio.file.StandardWatchEventKinds}
*/
public interface FileWatcherEventConstants {
/**
* Directory entry created event.
* Text value of ``{@link java.nio.file.StandardWatchEventKinds#ENTRY_CREATE}
*/
String ENTRY_CREATE_NAME = "ENTRY_CREATE";
/**
* Directory entry deleted event.
* Text value of {@link java.nio.file.StandardWatchEventKinds#ENTRY_DELETE}
*/
String ENTRY_DELETE_NAME = "ENTRY_DELETE";
/**
* Directory entry modified event.
* Text value of {@link java.nio.file.StandardWatchEventKinds#ENTRY_MODIFY}
*/
String ENTRY_MODIFY_NAME = "ENTRY_MODIFY";
/**
* A special event to indicate that events may have been lost or discarded.
* Text value of {@link java.nio.file.StandardWatchEventKinds#OVERFLOW}
*/
String OVERFLOW_NAME = "OVERFLOW";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy