Enum Class TraceObject.ConflictResolution

java.lang.Object
java.lang.Enum<TraceObject.ConflictResolution>
ghidra.trace.model.target.TraceObject.ConflictResolution
All Implemented Interfaces:
Serializable, Comparable<TraceObject.ConflictResolution>, Constable
Enclosing interface:
TraceObject

public static enum TraceObject.ConflictResolution extends Enum<TraceObject.ConflictResolution>
Specifies a strategy for resolving duplicate keys

Values are not permitted to have intersecting lifespans if they have the same parent and key, since this would imply the value is not unique for a given parent, key, and snap. Thus, when values and lifespans are being set that would result in conflicting entries, the conflict must be resolved, either by clearing the span or by denying the change.

  • Enum Constant Details

  • Method Details

    • values

      public static TraceObject.ConflictResolution[] 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 TraceObject.ConflictResolution 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