Class Pair<A,​B>

java.lang.Object
com.github.javaparser.utils.Pair<A,​B>
Type Parameters:
A - type of object a.
B - type of object b.

public class Pair<A,​B> extends Object
Simply a pair of objects.
  • Field Details

    • a

      public final A a
    • b

      public final B b
  • Constructor Details

    • Pair

      public Pair(A a, B b)
  • Method Details