Class Version


  • public class Version
    extends java.lang.Object
    Administrative class to keep track of the version number of the POI release. This class implements the upcoming standard of having org.apache.project-name.Version.getVersion() be a standard way to get version information.
    • Constructor Summary

      Constructors 
      Constructor Description
      Version()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String getImplementationLanguage()
      Implementation Language: Java
      static java.lang.String getProduct()
      Name of product: POI
      static java.lang.String getReleaseDate()
      Return the date of the release / build
      static java.lang.String getVersion()
      Return the basic version string, of the form nn.nn(.nn)
      static void main​(java.lang.String[] args)
      Prints the version to the command line
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Version

        public Version()
    • Method Detail

      • getVersion

        public static java.lang.String getVersion()
        Return the basic version string, of the form nn.nn(.nn)
      • getReleaseDate

        public static java.lang.String getReleaseDate()
        Return the date of the release / build
      • getProduct

        public static java.lang.String getProduct()
        Name of product: POI
      • getImplementationLanguage

        public static java.lang.String getImplementationLanguage()
        Implementation Language: Java
      • main

        public static void main​(java.lang.String[] args)
        Prints the version to the command line