com.github.lgooddatepicker.durationpicker_underconstruction.DurationUnit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of LGoodDatePicker Show documentation
Show all versions of LGoodDatePicker Show documentation
Java 8 Swing Date Picker. Easy to use, good looking, nice features, and
localized. Uses the JSR-310 standard.
The newest version!
package com.github.lgooddatepicker.durationpicker_underconstruction;
import java.time.temporal.ChronoUnit;
/**
*
*/
public enum DurationUnit {
Second(1),
Minute(60),
Hour(60 * 60),
Day(24 * 60 * 60),
Week(7 * 24 * 60 * 60),
Month((int) ChronoUnit.MONTHS.getDuration().getSeconds()),
Year((int) ChronoUnit.YEARS.getDuration().getSeconds());
final public int inSeconds;
final public int thirtyMinutesInSeconds = (30 * 60);
DurationUnit(int secondsConstant) {
inSeconds = secondsConstant;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy