Interface IVersion

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getBuild()
      Returns the build version number.
      int getMajor()
      Returns the major version number.
      int getMinor()
      Returns the minor version number.
      int getRelease()
      Returns the release version number.
      java.lang.String toString()
      Returns the string representation of this version.
      • Methods inherited from interface java.lang.Comparable

        compareTo
    • Method Detail

      • getMajor

        int getMajor()
        Returns the major version number.
        Returns:
        the major version number.
        Since:
        7.1.0
      • getMinor

        int getMinor()
        Returns the minor version number.
        Returns:
        the minor version number.
        Since:
        7.1.0
      • getRelease

        int getRelease()
        Returns the release version number.
        Returns:
        the release version number.
        Since:
        7.1.0
      • getBuild

        int getBuild()
        Returns the build version number.
        Returns:
        the build version number.
        Since:
        7.1.0
      • toString

        java.lang.String toString()
        Returns the string representation of this version. The result is equivalent to: "" + getMajor() + "." + getMinor() + "." + getRelease() + "." + getBuild().
        Overrides:
        toString in class java.lang.Object
        Returns:
        the string representation of this version.
        Since:
        7.1.0