Package mondrian.olap
Interface MondrianServer.MondrianVersion
-
- Enclosing class:
- MondrianServer
public static interface MondrianServer.MondrianVersion
Description of the version of the server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getMajorVersion()
Returns the major part of the version number.int
getMinorVersion()
Returns the minor part of the version number.String
getProductName()
Retrieves the name of this database product.String
getVersionString()
Returns the version string, for example "2.3.0".
-
-
-
Method Detail
-
getVersionString
String getVersionString()
Returns the version string, for example "2.3.0".- Returns:
- Version of this server
- See Also:
DatabaseMetaData.getDatabaseProductVersion()
-
getMajorVersion
int getMajorVersion()
Returns the major part of the version number.For example, if the full version string is "2.3.0", the major version is 2.
- Returns:
- major part of the version number
- See Also:
DatabaseMetaData.getDatabaseMajorVersion()
-
getMinorVersion
int getMinorVersion()
Returns the minor part of the version number.For example, if the full version string is "2.3.0", the minor version is 3.
- Returns:
- minor part of the version number
- See Also:
DatabaseMetaData.getDatabaseProductVersion()
-
getProductName
String getProductName()
Retrieves the name of this database product.- Returns:
- database product name
- See Also:
DatabaseMetaData.getDatabaseProductName()
-
-