Package com.adobe.internal.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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getBuild()
int
getMajor()
java.lang.String
getMessage()
int
getMicro()
int
getMinor()
boolean
isDebug()
-
-
-
Method Detail
-
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
java.lang.String getMessage()
- Returns:
- Returns a comprehensive version information string.
-
-