Enum Class DomainObjectEvent

java.lang.Object
java.lang.Enum<DomainObjectEvent>
ghidra.framework.model.DomainObjectEvent
All Implemented Interfaces:
EventType, Serializable, Comparable<DomainObjectEvent>, Constable

public enum DomainObjectEvent extends Enum<DomainObjectEvent> implements EventType
Basic event types for all Domain Objects.
  • Enum Constant Details

  • Method Details

    • values

      public static DomainObjectEvent[] 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 DomainObjectEvent 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
    • getId

      public int getId()
      Description copied from interface: EventType
      Returns the unique id assigned to this event type. The value is guaranteed to be constant for any given run of the application, but can vary from run to run.
      Specified by:
      getId in interface EventType
      Returns:
      the unique event id assigned to this EventType.