Enum Class PortableExecutable.SectionLayout

java.lang.Object
java.lang.Enum<PortableExecutable.SectionLayout>
ghidra.app.util.bin.format.pe.PortableExecutable.SectionLayout
All Implemented Interfaces:
Serializable, Comparable<PortableExecutable.SectionLayout>, Constable
Enclosing class:
PortableExecutable

public static enum PortableExecutable.SectionLayout extends Enum<PortableExecutable.SectionLayout>
Indicates how sections of this PE are laid out in the underlying ByteProvider. Use FILE when loading from a file, and MEMORY when loading from a memory model (like an already-loaded program in Ghidra).
  • Enum Constant Details

  • Method Details

    • values

      public static PortableExecutable.SectionLayout[] 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 PortableExecutable.SectionLayout 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