io.github.vmzakharov.ecdataframe.util.SysOutPrinter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dataframe-ec Show documentation
Show all versions of dataframe-ec Show documentation
A tabular data structure based on the Eclipse Collections framework
package io.github.vmzakharov.ecdataframe.util;
public class SysOutPrinter
implements Printer
{
@Override
public void print(String value)
{
System.out.print(value);
}
@Override
public void newLine()
{
System.out.println();
}
}