com.sap.sl.sdk.authoring.commons
Interface Version

All Superinterfaces:
java.lang.Comparable<Version>

public interface Version
extends java.lang.Comparable<Version>

This interface allows you to retrieve the current version number of the BI Semantic Layer Java SDK.

The version number consists of the four following segments:

Segments are separated by a dot, for example: "14.2.0.284".


Method Summary
 int getBuild()
          Returns the value of the 'Build' attribute.
 int getMajor()
          Returns the value of the 'Major' attribute.
 int getMinor()
          Returns the value of the 'Minor' attribute.
 int getService()
          Returns the value of the 'Service' attribute.
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getMajor

int getMajor()
Returns the value of the 'Major' attribute.

This integer represents the major segment of the version.

Returns:
The value of the 'Major' attribute

getMinor

int getMinor()
Returns the value of the 'Minor' attribute.

This integer represents the minor segment of the version.

Returns:
The value of the 'Minor' attribute

getService

int getService()
Returns the value of the 'Service' attribute.

This integer represents the service pack segment of the version.

Returns:
The value of the 'Service' attribute

getBuild

int getBuild()
Returns the value of the 'Build' attribute.

This integer represents the build segment of the version.

Returns:
The value of the 'Build' attribute


© Copyright 2016 SAP SE or an SAP affiliate company. All rights reserved.