Interface FloatFloatSortedPair

All Superinterfaces:
FloatFloatPair, Pair<Float,​Float>, Serializable, SortedPair<Float>
All Known Implementing Classes:
FloatFloatImmutableSortedPair

public interface FloatFloatSortedPair
extends FloatFloatPair, SortedPair<Float>, Serializable
A type-specific immutable SortedPair.
  • Method Details

    • of

      static FloatFloatSortedPair of​(float left, float 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 Notes:
      This factory method delegates to the factory method of the corresponding immutable implementation.