Back to project page UTHPortal-Android-Gradle.
The source code is released under:
MIT License
If you think the Android project UTHPortal-Android-Gradle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.uth.uthportal.collections; // w w w .j a va2 s. co m public enum DefaultIntervals { MIN2(2), MIN5(5), MIN10(10), MIN20(20), MIN30(30), HOUR1(60), HOUR2(120), HOUR6(360), HOUR12(720), DAY(1440); private final int mins; private DefaultIntervals(int mins){ this.mins = mins; } public int getMins(){ return mins; } }