org.erjia.lang.timer.Timer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lang Show documentation
Show all versions of lang Show documentation
Java 开发工具包 ErJia2,是 ErJia 的升级版,向 Kotlin 迁移。“ErJia”,是以作者生活的村落”二甲村”而来,为了纪念这座美好的小村庄,特意将该工具包以“二甲”的拼音命名。
The newest version!
package org.erjia.lang.timer;
/**
* @author linshuaishuai
*/
public interface Timer {
long getStart();
Long getEnd();
Long getPast();
Timer reset();
long stop();
Timer start();
}