Enum Class Combiner

java.lang.Object
java.lang.Enum<Combiner>
ghidra.features.base.memsearch.combiner.Combiner
All Implemented Interfaces:
Serializable, Comparable<Combiner>, Constable

public enum Combiner extends Enum<Combiner>
An enum of search results "combiners". Each combiner determines how to combine two sets of memory search results. The current or existing results is represented as the "A" set and the new search is represented as the "B" set.
  • Enum Constant Details

    • REPLACE

      public static final Combiner REPLACE
    • UNION

      public static final Combiner UNION
    • INTERSECT

      public static final Combiner INTERSECT
    • XOR

      public static final Combiner XOR
    • A_MINUS_B

      public static final Combiner A_MINUS_B
    • B_MINUS_A

      public static final Combiner B_MINUS_A
  • Method Details

    • values

      public static Combiner[] 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 Combiner 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
    • getName

      public String getName()
    • combine

      public Collection<MemoryMatch> combine(List<MemoryMatch> matches1, List<MemoryMatch> matches2)