Class Version

    • Field Detail

      • UNKNOWN_VERSION

        public static final byte UNKNOWN_VERSION
        Use 0 as major & minor values for UNKNOWN version
        See Also:
        Constant Field Values
      • UNKNOWN

        public static final Version UNKNOWN
        Version 0.0 is UNKNOWN constant
        • UNKNOWN is only equal to itself.
        • is(Less|Greater)Than method with an UNKNOWN operand returns false.
        • is(Less|Greater)OrEqual with an UNKNOWN operand returns false, unless both operands are UNKNOWN.
        • UNKNOWN.isUnknown(Less|Greater)(Than|OrEqual) returns true.
        • otherVersion.isUnknown(Less|Greater)(Than|OrEqual) with an UNKNOWN argument returns false.
    • Constructor Detail

      • Version

        public Version()
    • Method Detail

      • getMajor

        public byte getMajor()
      • getMinor

        public byte getMinor()
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • writeData

        public void writeData​(ObjectDataOutput out)
                       throws java.io.IOException
        Description copied from interface: DataSerializable
        Writes object fields to output stream
        Specified by:
        writeData in interface DataSerializable
        Parameters:
        out - output
        Throws:
        java.io.IOException - if an I/O error occurs. In particular, an IOException may be thrown if the output stream has been closed.
      • readData

        public void readData​(ObjectDataInput in)
                      throws java.io.IOException
        Description copied from interface: DataSerializable
        Reads fields from the input stream
        Specified by:
        readData in interface DataSerializable
        Parameters:
        in - input
        Throws:
        java.io.IOException - if an I/O error occurs. In particular, an IOException may be thrown if the input stream has been closed.
      • compareTo

        public int compareTo​(Version o)
        Specified by:
        compareTo in interface java.lang.Comparable<Version>
      • of

        public static Version of​(int major,
                                 int minor)
        Returns:
        the ClusterVersion with the given major and minor
      • of

        public static Version of​(java.lang.String version)
        Parse the given string to a Version. This method may throw an IllegalArgumentException
        Parameters:
        version - string to parse to Version.
        Returns:
        the Version parsed from given argument.
      • isEqualTo

        public boolean isEqualTo​(Version version)
        Parameters:
        version - other version to compare to
        Returns:
        true if this version equals version
      • isGreaterThan

        public boolean isGreaterThan​(Version version)
        Parameters:
        version - other version to compare to
        Returns:
        true if this version is greater than version
      • isUnknownOrGreaterThan

        public boolean isUnknownOrGreaterThan​(Version version)
        Parameters:
        version - other version to compare to
        Returns:
        true if this version is unknown or if this version is greater than version
      • isGreaterOrEqual

        public boolean isGreaterOrEqual​(Version version)
        Parameters:
        version - other version to compare to
        Returns:
        true if this version is greater than or equal to version
      • isUnknownOrGreaterOrEqual

        public boolean isUnknownOrGreaterOrEqual​(Version version)
        Parameters:
        version - other version to compare to
        Returns:
        true if this version is unknown or if this version is greater than or equal to version
      • isLessThan

        public boolean isLessThan​(Version version)
        Parameters:
        version - other version to compare to
        Returns:
        true if this version is less than version
      • isUnknownOrLessThan

        public boolean isUnknownOrLessThan​(Version version)
        Parameters:
        version - other version to compare to
        Returns:
        true if this version is unknown or if this version is less than version
      • isLessOrEqual

        public boolean isLessOrEqual​(Version version)
        Parameters:
        version - other version to compare to
        Returns:
        true if this version is less than or equal to version
      • isUnknownOrLessOrEqual

        public boolean isUnknownOrLessOrEqual​(Version version)
        Parameters:
        version - other version to compare to
        Returns:
        true if this version is unknown or if this version is less than or equal to version
      • isBetween

        public boolean isBetween​(Version from,
                                 Version to)
        Checks if the version is between specified version (both ends inclusive)
        Parameters:
        from - the lower bound version
        to - the upper bound version
        Returns:
        true if the version is between from and to (both ends inclusive)
      • isUnknown

        public boolean isUnknown()
        Returns:
        true if this version is equal to UNKNOWN