Class IntPair

java.lang.Object
com.ibm.wala.util.intset.IntPair

public class IntPair extends Object
A pair of ints. Note that an IntPair has value semantics.
  • Constructor Details

    • IntPair

      public IntPair(int x, int y)
  • Method Details

    • getX

      public int getX()
      Returns:
      Returns the x.
    • getY

      public int getY()
      Returns:
      Returns the y.
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • hashCode

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

      public String toString()
      Overrides:
      toString in class Object
    • make

      public static IntPair make(int x, int y)