Class Version


  • public class Version
    extends java.lang.Object
    Simple class representing service version.
    • Constructor Summary

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

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()
      Returns string representation of Version that is send with request.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • Version

        public Version​(int major,
                       int minor,
                       int point)
        Constructor.
        Parameters:
        major - major release version - increment for backwards incompatible changes.
        minor - minor release version - increment for new features
        point - point release version - increment for every change.
    • Method Detail

      • toString

        public java.lang.String toString()
        Returns string representation of Version that is send with request.
        Overrides:
        toString in class java.lang.Object
        Returns:
        a string representation of the version.