compact1, compact2, compact3
java.nio.file
Class StandardWatchEventKinds
- java.lang.Object
-
- java.nio.file.StandardWatchEventKinds
-
public final class StandardWatchEventKinds extends Object
Defines the standard event kinds.- Since:
- 1.7
-
-
Field Summary
Fields Modifier and Type Field and Description static WatchEvent.Kind<Path>
ENTRY_CREATE
Directory entry created.static WatchEvent.Kind<Path>
ENTRY_DELETE
Directory entry deleted.static WatchEvent.Kind<Path>
ENTRY_MODIFY
Directory entry modified.static WatchEvent.Kind<Object>
OVERFLOW
A special event to indicate that events may have been lost or discarded.
-
-
-
Field Detail
OVERFLOW
public static final WatchEvent.Kind<Object> OVERFLOW
A special event to indicate that events may have been lost or discarded.The
context
for this event is implementation specific and may benull
. The eventcount
may be greater than1
.- See Also:
-
WatchService
ENTRY_CREATE
public static final WatchEvent.Kind<Path> ENTRY_CREATE
ENTRY_DELETE
public static final WatchEvent.Kind<Path> ENTRY_DELETE
ENTRY_MODIFY
public static final WatchEvent.Kind<Path> ENTRY_MODIFY
-
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.