Package mondrian.olap

Interface MondrianServer.MondrianVersion

  • Enclosing class:
    MondrianServer

    public static interface MondrianServer.MondrianVersion
    Description of the version of the server.
    • Method Detail

      • getVersionString

        java.lang.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

        java.lang.String getProductName()
        Retrieves the name of this database product.
        Returns:
        database product name
        See Also:
        DatabaseMetaData.getDatabaseProductName()