com.luoaijun.iterface.PrintInter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
Framework for Advanced Statistics and Data Sciences
The newest version!
package com.luoaijun.iterface;
import org.apache.log4j.Logger;
public interface PrintInter {
Logger logger = Logger.getLogger(PrintInter.class);
public abstract Object print(T t);
public abstract Object println(T t);
}