Enum Class SectionShareKind

java.lang.Object
java.lang.Enum<SectionShareKind>
ghidra.app.util.bin.format.pef.SectionShareKind
All Implemented Interfaces:
Serializable, Comparable<SectionShareKind>, Constable

public enum SectionShareKind extends Enum<SectionShareKind>
Values for the shareKind field.
  • Enum Constant Details

    • ProcessShare

      public static final SectionShareKind ProcessShare
      Indicates the section is shared within a process, but a fresh copy is created for different processes.
    • GlobalShare

      public static final SectionShareKind GlobalShare
      Indicates the section is shared between all processes in the system.
    • ProtectedShare

      public static final SectionShareKind ProtectedShare
      Indicates the section is shared between all processes, but is protected. Protected sections are read/write in privileged mode and read-only in user mode.
  • Method Details

    • values

      public static SectionShareKind[] 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 SectionShareKind 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
    • getValue

      public int getValue()
    • get

      public static SectionShareKind get(int value)