org.eadge.extractpdfexcel.data.utils.MyPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdf-to-excel Show documentation
Show all versions of pdf-to-excel Show documentation
A Java library used to convert PDF to Excel.
The newest version!
package org.eadge.extractpdfexcel.data.utils;
/**
* Created by eadgyo on 19/07/16.
*
*/
public class MyPair
{
private L l;
private R r;
public MyPair(L l, R r)
{
this.l = l;
this.r = r;
}
public L getLeft()
{
return l;
}
public void setLeft(L l)
{
this.l = l;
}
public R getRight()
{
return r;
}
public void setRight(R r)
{
this.r = r;
}
public int compareTo(Object o)
{
return 0;
}
public Object setValue(Object o)
{
return null;
}
}