
com.github.bingoohuang.settingbeanorm.util.TimeDuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of settingbean-orm Show documentation
Show all versions of settingbean-orm Show documentation
setting javabean automatic mapping to database setting table
package com.github.bingoohuang.settingbeanorm.util;
import lombok.Builder;
import lombok.Value;
import java.util.concurrent.TimeUnit;
@Value @Builder
public class TimeDuration {
private final double value;
private final TimeUnit unit;
@Override public String toString() {
return value + unit.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy