Interface Pair<A,B>


public interface Pair<A,B>
  • Method Summary

    Modifier and Type
    Method
    Description
     
     
    static <A, B> Pair<A,B>
    of(A key, B value)
     
  • Method Details

    • of

      static <A, B> Pair<A,B> of(A key, B value)
    • getKey

      A getKey()
    • getValue

      B getValue()