com.ionic.sdk.core.date.DateTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ionic-sdk Show documentation
Show all versions of ionic-sdk Show documentation
The Ionic Java SDK provides an easy-to-use interface to the Ionic Platform.
package com.ionic.sdk.core.date;
/**
* Date related utility functions and declarations.
*/
public final class DateTime {
/**
* Constructor.
* http://checkstyle.sourceforge.net/config_design.html#FinalClass
*/
private DateTime() {
}
/**
* Milliseconds in one second.
*/
public static final long ONE_SECOND_MILLIS = 1000L;
}