Class Version

    • Constructor Summary

      Constructors 
      Constructor Description
      Version​(int major, int minor, int service)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int major()
      Major part of the runtime version Example: If the version is 9.3.2 this method will return 9.
      int minor()
      Minor part of the runtime version.
      int service()
      Service part of the runtime version.
    • Constructor Detail

      • Version

        public Version​(int major,
                       int minor,
                       int service)
        Parameters:
        major - major part of the version (9 of 9.3.2)
        minor - minor part of the version (3 of 9.3.2)
        service - service part of the version (2 of 9.3.2)
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
    • Method Detail

      • major

        public int major()
        Major part of the runtime version Example: If the version is 9.3.2 this method will return 9.
        Returns:
        major version
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • minor

        public int minor()
        Minor part of the runtime version. Example: If the version is 9.3.2 this method will return 3.
        Returns:
        minor version
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.
      • service

        public int service()
        Service part of the runtime version. Example: If the version is 9.3.2 this method will return 2.
        Returns:
        service version
        API:
        This public API is available in IvyScript and Java. It has the visibility EXPERT.