Class Version


  • public class Version
    extends java.lang.Object
    Manage version information
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static int versionInteger()
      Indicate the package version, as an integer.
      static java.lang.String versionString()
      Indicate the package version, as a printable string giving the package name and version
      • Methods inherited from class java.lang.Object

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

      • versionString

        public static java.lang.String versionString()
        Indicate the package version, as a printable string giving the package name and version
        Returns:
        a string representation of the version
      • versionInteger

        public static int versionInteger()
        Indicate the package version, as an integer. The number returned is major-version * 1e6 + minor-version * 1e3 + release.
        Returns:
        an integer representation of the version