Package org.miaixz.bus.core.io.watch
Enum Class WatchKind
- All Implemented Interfaces:
Serializable,Comparable<WatchKind>,Constable
监听事件类型枚举,包括:
1. 事件丢失 OVERFLOW - StandardWatchEventKinds.OVERFLOW
2. 修改事件 MODIFY - StandardWatchEventKinds.ENTRY_MODIFY
3. 创建事件 CREATE - StandardWatchEventKinds.ENTRY_CREATE
4. 删除事件 DELETE - StandardWatchEventKinds.ENTRY_DELETE
- Since:
- Java 17+
- Author:
- Kimi Liu
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
-
Enum Constant Details
-
OVERFLOW
事件丢失 -
MODIFY
修改事件 -
CREATE
创建事件 -
DELETE
删除事件
-
-
Field Details
-
ALL
全部事件
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
获取枚举对应的事件类型- Returns:
- 事件类型值
-