Enum Class Scanner

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

public enum Scanner extends Enum<Scanner>
Scan algorithms that examine the byte values of existing search results and look for changes. The specific scanner algorithm determines which results to keep and which to discard.
  • Enum Constant Details

    • EQUALS

      public static final Scanner EQUALS
    • NOT_EQUALS

      public static final Scanner NOT_EQUALS
    • INCREASED

      public static final Scanner INCREASED
    • DECREASED

      public static final Scanner DECREASED
  • Method Details

    • values

      public static Scanner[] 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 Scanner 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()
    • getDescription

      public String getDescription()
    • accept

      public boolean accept(MemoryMatch match)