Class LibraryInfo


  • public class LibraryInfo
    extends java.lang.Object
    Stores the boot path and extension directories associated with a VM.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String[] fBootpath  
      private java.lang.String[] fEndorsedDirs  
      private java.lang.String[] fExtensionDirs  
      private java.lang.String fVersion  
    • Constructor Summary

      Constructors 
      Constructor Description
      LibraryInfo​(java.lang.String version, java.lang.String[] bootpath, java.lang.String[] extDirs, java.lang.String[] endDirs)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String[] getBootpath()
      Returns a collection of bootpath entries for this VM install.
      java.lang.String[] getEndorsedDirs()
      Returns a collection of endorsed directory paths for this VM install.
      java.lang.String[] getExtensionDirs()
      Returns a collection of extension directory paths for this VM install.
      java.lang.String getVersion()
      Returns the version of this VM install.
      • Methods inherited from class java.lang.Object

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

      • fVersion

        private java.lang.String fVersion
      • fBootpath

        private java.lang.String[] fBootpath
      • fExtensionDirs

        private java.lang.String[] fExtensionDirs
      • fEndorsedDirs

        private java.lang.String[] fEndorsedDirs
    • Constructor Detail

      • LibraryInfo

        public LibraryInfo​(java.lang.String version,
                           java.lang.String[] bootpath,
                           java.lang.String[] extDirs,
                           java.lang.String[] endDirs)
    • Method Detail

      • getVersion

        public java.lang.String getVersion()
        Returns the version of this VM install.
        Returns:
        version
      • getExtensionDirs

        public java.lang.String[] getExtensionDirs()
        Returns a collection of extension directory paths for this VM install.
        Returns:
        a collection of absolute paths
      • getBootpath

        public java.lang.String[] getBootpath()
        Returns a collection of bootpath entries for this VM install.
        Returns:
        a collection of absolute paths
      • getEndorsedDirs

        public java.lang.String[] getEndorsedDirs()
        Returns a collection of endorsed directory paths for this VM install.
        Returns:
        a collection of absolute paths