Package mondrian.olap
Interface MondrianServer.MondrianVersion
- Enclosing class:
- MondrianServer
public static interface MondrianServer.MondrianVersion
Description of the version of the server.
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the major part of the version number.int
Returns the minor part of the version number.Retrieves the name of this database product.Returns the version string, for example "2.3.0".
-
Method Details
-
getVersionString
String getVersionString()Returns the version string, for example "2.3.0".- Returns:
- Version of this server
- See Also:
-
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:
-
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:
-
getProductName
String getProductName()Retrieves the name of this database product.- Returns:
- database product name
- See Also:
-