Package cdc.enums

Enum Class DagEventType

All Implemented Interfaces:
Serializable, Comparable<DagEventType>, Constable

public enum DagEventType extends Enum<DagEventType>
  • Enum Constant Details

    • CREATED

      public static final DagEventType CREATED
      An item was created.
    • REMOVED

      public static final DagEventType REMOVED
      An item was removed.
    • CONTENT_CHANGED

      public static final DagEventType CONTENT_CHANGED
      An item had its content changed.
    • REPARENTED

      public static final DagEventType REPARENTED
      An item has its relationships changed.
    • GLOBAL

      public static final DagEventType GLOBAL
      Global changes (creation, removal, ...) happened.
    • LOCKED

      public static final DagEventType LOCKED
      The underlying container was locked.
  • Method Details

    • values

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