This commit is contained in:
Redkale
2017-02-23 17:45:01 +08:00
parent cd54a7040a
commit 801e45abce
2 changed files with 44 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ import java.util.function.*;
/**
*
* 包含两边的值
* 包含两边的值
* <p>
* 详情见: https://redkale.org
*
@@ -22,6 +22,34 @@ public interface Range<E extends Comparable> extends java.io.Serializable, Predi
public E getMax();
public static ByteRange crreate(byte min, byte max) {
return new ByteRange(min, max);
}
public static ShortRange crreate(short min, short max) {
return new ShortRange(min, max);
}
public static IntRange crreate(int min, int max) {
return new IntRange(min, max);
}
public static LongRange crreate(long min, long max) {
return new LongRange(min, max);
}
public static FloatRange crreate(float min, float max) {
return new FloatRange(min, max);
}
public static DoubleRange crreate(double min, double max) {
return new DoubleRange(min, max);
}
public static StringRange crreate(String min, String max) {
return new StringRange(min, max);
}
public static final class ByteRange implements Range<Byte> {
private Byte min = Byte.MIN_VALUE;

View File

@@ -430,6 +430,21 @@ public final class Utility {
return ld.atStartOfDay(zid).toInstant().toEpochMilli();
}
/**
* 获取时间点所在月份的最后一天
*
* @param time 指定时间
*
* @return 毫秒数
*/
public static long monthLastDay(long time) {
ZoneId zid = ZoneId.systemDefault();
Instant instant = Instant.ofEpochMilli(time);
LocalDate ld = instant.atZone(zid).toLocalDate();
ld = ld.withDayOfMonth(ld.lengthOfMonth());
return ld.atStartOfDay(zid).toInstant().toEpochMilli();
}
/**
* 将字节数组转换为16进制字符串
*