Class ByteLongMutablePair

    • Constructor Detail

      • ByteLongMutablePair

        public ByteLongMutablePair​(byte left,
                                   long right)
        Creates a new type-specific mutable Pair with given left and right value.
        Parameters:
        left - the left value.
        right - the right value.
    • Method Detail

      • of

        public static ByteLongMutablePair of​(byte left,
                                             long right)
        Returns a new type-specific mutable Pair with given left and right value.
        Parameters:
        left - the left value.
        right - the right value.
        Implementation Notes:
        This factory method delegates to the constructor.
      • leftByte

        public byte leftByte()
        Description copied from interface: ByteLongPair
        Returns the left element of this pair.
        Specified by:
        leftByte in interface ByteLongPair
        Returns:
        the left element of this pair.
      • left

        public ByteLongMutablePair left​(byte l)
        Description copied from interface: ByteLongPair
        Sets the left element of this pair (optional operation).
        Specified by:
        left in interface ByteLongPair
        Parameters:
        l - a new value for the left element.
      • rightLong

        public long rightLong()
        Description copied from interface: ByteLongPair
        Returns the right element of this pair.
        Specified by:
        rightLong in interface ByteLongPair
        Returns:
        the right element of this pair.
      • right

        public ByteLongMutablePair right​(long r)
        Description copied from interface: ByteLongPair
        Sets the right element of this pair (optional operation).
        Specified by:
        right in interface ByteLongPair
        Parameters:
        r - a new value for the right element.
      • hashCode

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

        public String toString()
        Returns a string representation of this pair in the form <l,r>.
        Overrides:
        toString in class Object
        Returns:
        a string representation of this pair in the form <l,r>.