Interface LongLongSortedPair

All Superinterfaces:
LongLongPair, Pair<Long,Long>, Serializable, SortedPair<Long>
All Known Implementing Classes:
LongLongImmutableSortedPair

public interface LongLongSortedPair extends LongLongPair, SortedPair<Long>, Serializable
A type-specific immutable SortedPair.
  • Method Details

    • of

      static LongLongSortedPair of(long left, long right)
      Returns a new type-specific immutable SortedPair with given left and right value.

      Note that if left and right are in the wrong order, they will be exchanged.

      Parameters:
      left - the left value.
      right - the right value.
      Implementation Specification:
      This factory method delegates to the factory method of the corresponding immutable implementation.
    • contains

      default boolean contains(long e)
      Returns true if one of the two elements of this sorted pair is equal to a given element.
      Parameters:
      e - an element.
      Returns:
      true if one of the two elements of this sorted pair is equal to e.
      See Also:
    • contains

      @Deprecated default boolean contains(Object o)
      Deprecated.
      Please use the corresponding type-specific method instead.
      Returns true if one of the two elements of this sorted pair is equal to a given object.
      Specified by:
      contains in interface SortedPair<Long>
      Parameters:
      o - an object, or null-
      Returns:
      true if one of the two elements of this sorted pair is equal to o.