Enum Class DocumentEvent

java.lang.Object
java.lang.Enum<DocumentEvent>
com.logicaldoc.core.document.DocumentEvent
All Implemented Interfaces:
Serializable, Comparable<DocumentEvent>, Constable

public enum DocumentEvent extends Enum<DocumentEvent>
Possible events in the document's history
Since:
6.6
Author:
Marco Meschieri - LogicalDOC
  • Enum Constant Details

  • Method Details

    • values

      public static DocumentEvent[] 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 DocumentEvent 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
    • fromKey

      public static DocumentEvent fromKey(String key)
      Gets the right enumeration entry from the corresponding resource bundle key
      Parameters:
      key - the resource bundle key
      Returns:
      The corresponding entry
    • toKey

      public String toKey()
      Converts the enumeration entry to the corresponding key in the resource bundle
      Returns:
      The key
    • allKeys

      public List<String> allKeys()
      Retrieves the all resource bundle keys
      Returns:
      A list of keys
    • toString

      public String toString()
      Overrides:
      toString in class Enum<DocumentEvent>