Class DelayImportInfo


  • public class DelayImportInfo
    extends java.lang.Object
    A class to hold the information extracted from a delay import descriptor. NOTE: This class is simply a storage class created for parsing the PE header data structures. It does not map back to a PE data data structure.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Returns the name of the imported DLL.
      long getOrdinal()
      Returns the ordinal number of the imported DLL.
      boolean hasName()
      Returns true if the import is 'by name'.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getOrdinal

        public long getOrdinal()
        Returns the ordinal number of the imported DLL.
        Returns:
        the ordinal number of the imported DLL
      • getName

        public java.lang.String getName()
        Returns the name of the imported DLL.
        Returns:
        the name of the imported DLL
      • hasName

        public boolean hasName()
        Returns true if the import is 'by name'.
        Returns:
        true if the import is 'by name'