Package com.itextpdf.kernel.xmp
Interface XMPVersionInfo
public interface XMPVersionInfo
XMP Toolkit Version Information.
Version information for the XMP toolkit is stored in the jar-library and available through a runtime call, XMPMetaFactory.getVersionInfo()
, addition static version numbers are defined in "version.properties".
- Since:
- 23.01.2006
-
Method Summary
-
Method Details
-
getMajor
int getMajor()- Returns:
- Returns the primary release number, the "1" in version "1.2.3".
-
getMinor
int getMinor()- Returns:
- Returns the secondary release number, the "2" in version "1.2.3".
-
getMicro
int getMicro()- Returns:
- Returns the tertiary release number, the "3" in version "1.2.3".
-
getBuild
int getBuild()- Returns:
- Returns a rolling build number, monotonically increasing in a release.
-
isDebug
boolean isDebug()- Returns:
- Returns true if this is a debug build.
-
getMessage
String getMessage()- Returns:
- Returns a comprehensive version information string.
-