org.eadge.extractpdfexcel.debug.tests.Result 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.debug.tests;
/**
* Created by eadgyo on 27/07/16.
*
* Result transform
*/
class Result
{
static String transformResult(boolean result)
{
if (result)
return "[ Ok ]";
else
return "[ Failed ]";
}
}