Enum Class DocActionEnum

java.lang.Object
java.lang.Enum<DocActionEnum>
io.github.guoshiqiufeng.dify.dataset.enums.document.DocActionEnum
All Implemented Interfaces:
Serializable, Comparable<DocActionEnum>, Constable

public enum DocActionEnum extends Enum<DocActionEnum>
Since:
2025-08-14 10:20:19
Version:
1.0
Author:
adam
  • Enum Constant Details

    • enable

      public static final DocActionEnum enable
      启用文档
    • disable

      public static final DocActionEnum disable
      禁用文档
    • archive

      public static final DocActionEnum archive
      归档文档
    • un_archive

      public static final DocActionEnum un_archive
      取消归档文档
  • Method Details

    • values

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