Enum Class WatchKind

java.lang.Object
java.lang.Enum<WatchKind>
org.miaixz.bus.core.io.watch.WatchKind
All Implemented Interfaces:
Serializable, Comparable<WatchKind>, Constable

public enum WatchKind extends Enum<WatchKind>
监听事件类型枚举,包括:
      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
  • Enum Constant Details

    • OVERFLOW

      public static final WatchKind OVERFLOW
      事件丢失
    • MODIFY

      public static final WatchKind MODIFY
      修改事件
    • CREATE

      public static final WatchKind CREATE
      创建事件
    • DELETE

      public static final WatchKind DELETE
      删除事件
  • Field Details

  • Method Details

    • values

      public static WatchKind[] 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

      public static WatchKind valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getValue

      public WatchEvent.Kind<?> getValue()
      获取枚举对应的事件类型
      Returns:
      事件类型值