com.ibm.streams.management
Interface VersionInformation
-
public interface VersionInformationVersionInformation contains information about an installed version of version of Streams code.
-
-
Field Summary
Fields Modifier and Type Field and Description static java.lang.StringIBM_COPYRIGHT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description java.lang.StringgetArchitecture()Returns the hardware architecture for which the installation was built.java.lang.StringgetBuildVersion()Returns the product build version number.java.lang.StringgetEditionName()Returns the name of the product edition that was installed.java.lang.StringgetFullProductVersion()Returns the full product version including the hot fix version if a hot fix is installed.java.lang.StringgetHotFix()Returns the hot fix identifier if a hot fix is installed; otherwise, returns an empty string.java.lang.StringgetMinimumOSBaseVersion()Returns the major release of the minimum operating system version on which the installation can run.java.lang.StringgetMinimumOSPatchVersion()Returns the minor release or patch level of the minimum operating system version on which the installation can run.java.lang.StringgetMinimumOSVersion()Returns the minimum operating system on which the installation can run.java.lang.StringgetProductName()Return the name of the Streams product.java.lang.StringgetProductVersion()Returns the product version excluding the hot fix version if a hot fix is installed.
-
-
-
Field Detail
-
IBM_COPYRIGHT
static final java.lang.String IBM_COPYRIGHT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getProductName
java.lang.String getProductName()
Return the name of the Streams product.- Returns:
- the product name.
-
getEditionName
java.lang.String getEditionName()
Returns the name of the product edition that was installed.- Returns:
- the product edition.
-
getFullProductVersion
java.lang.String getFullProductVersion()
Returns the full product version including the hot fix version if a hot fix is installed.- Returns:
- the full product version.
-
getProductVersion
java.lang.String getProductVersion()
Returns the product version excluding the hot fix version if a hot fix is installed.- Returns:
- returns the product version.
-
getHotFix
java.lang.String getHotFix()
Returns the hot fix identifier if a hot fix is installed; otherwise, returns an empty string.- Returns:
- the hot fix identifier.
-
getBuildVersion
java.lang.String getBuildVersion()
Returns the product build version number.- Returns:
- the product build version.
-
getArchitecture
java.lang.String getArchitecture()
Returns the hardware architecture for which the installation was built.- Returns:
- the architecture indicator.
-
getMinimumOSVersion
java.lang.String getMinimumOSVersion()
Returns the minimum operating system on which the installation can run.- Returns:
- the minimum operating system.
-
getMinimumOSBaseVersion
java.lang.String getMinimumOSBaseVersion()
Returns the major release of the minimum operating system version on which the installation can run.- Returns:
- the minimum operating system major release.
-
getMinimumOSPatchVersion
java.lang.String getMinimumOSPatchVersion()
Returns the minor release or patch level of the minimum operating system version on which the installation can run.- Returns:
- the minimum operating system version minor release or patch level.
-
-