Enum DllCharacteristics

    • Enum Constant Detail

      • 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 Detail

      • values

        public static DllCharacteristics[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DllCharacteristics c : DllCharacteristics.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DllCharacteristics valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getAlias

        public java.lang.String getAlias()
      • getMask

        public int getMask()
      • getDescription

        public java.lang.String getDescription()
      • resolveCharacteristics

        public static java.util.Set<DllCharacteristics> resolveCharacteristics​(int value)