
src.org.neodatis.tool.wrappers.OdbTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neodatis-odb Show documentation
Show all versions of neodatis-odb Show documentation
The NeoDatis Object Database
package org.neodatis.tool.wrappers;
import java.util.Date;
/**
* @sharpen.ignore
* @author olivier
*
*/
public class OdbTime {
public static long getCurrentTimeInMs(){
return System.currentTimeMillis();
}
public static long getMilliseconds(Date d){
return d.getTime();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy