Class TwoTuple<L,R>

java.lang.Object
com.github.basking2.sdsai.itrex.util.TwoTuple<L,R>
All Implemented Interfaces:
Iterable<Object>

public class TwoTuple<L,R> extends Object implements Iterable<Object>
  • Field Details

    • l

      public L l
    • r

      public R r
  • Constructor Details

    • TwoTuple

      public TwoTuple(L l, R r)
  • Method Details

    • getL

      public L getL()
    • setL

      public void setL(L l)
    • getR

      public R getR()
    • setR

      public void setR(R r)
    • equals

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

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

      public Iterator<Object> iterator()
      Specified by:
      iterator in interface Iterable<L>