com.aspose.words

Class BuildVersionInfo

  • java.lang.Object
    • com.aspose.words.BuildVersionInfo
public abstract class BuildVersionInfo 
extends java.lang.Object

Provides information about the current product name and version.

Example:

Shows how to display information about your installed version of Aspose.Words.
System.out.println(MessageFormat.format("I am currently using {0}, version number {1}!", BuildVersionInfo.getProduct(), BuildVersionInfo.getVersion()));

Property Getters/Setters Summary
static java.lang.StringgetProduct()
Gets the full name of the product.
static java.lang.StringgetVersion()
Gets the product version.
 

    • Property Getters/Setters Detail

      • getProduct

        public static java.lang.String getProduct()
        
        Gets the full name of the product.

        Example:

        Shows how to display information about your installed version of Aspose.Words.
        System.out.println(MessageFormat.format("I am currently using {0}, version number {1}!", BuildVersionInfo.getProduct(), BuildVersionInfo.getVersion()));
      • getVersion

        public static java.lang.String getVersion()
        
        Gets the product version.

        The product version is in the "Major.Minor.Hotfix.0" format.

        Example:

        Shows how to display information about your installed version of Aspose.Words.
        System.out.println(MessageFormat.format("I am currently using {0}, version number {1}!", BuildVersionInfo.getProduct(), BuildVersionInfo.getVersion()));