Enum Class DllCharacteristics

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

public enum DllCharacteristics extends Enum<DllCharacteristics>
  • Enum Constant Details

    • IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA
    • IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE
    • IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY
    • IMAGE_DLLCHARACTERISTICS_NX_COMPAT

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_NX_COMPAT
    • IMAGE_DLLCHARACTERISTICS_NO_ISOLATION

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_NO_ISOLATION
    • IMAGE_DLLCHARACTERISTICS_NO_SEH

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_NO_SEH
    • IMAGE_DLLCHARACTERISTICS_NO_BIND

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_NO_BIND
    • IMAGE_DLLCHARACTERISTICS_APPCONTAINER

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_APPCONTAINER
    • IMAGE_DLLCHARACTERISTICS_WDM_DRIVER

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_WDM_DRIVER
    • IMAGE_DLLCHARACTERISTICS_GUARD_CF

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_GUARD_CF
    • IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE

      public static final DllCharacteristics IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE
  • Method Details

    • values

      public static DllCharacteristics[] 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 DllCharacteristics 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
    • getAlias

      public String getAlias()
    • getMask

      public int getMask()
    • getDescription

      public String getDescription()
    • resolveCharacteristics

      public static Set<DllCharacteristics> resolveCharacteristics(int value)