com.github.andyshao.time.LocalTimeOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.time;
import com.github.andyshao.lang.Convert;
import com.github.andyshao.util.stream.Pair;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.time.temporal.TemporalAccessor;
import java.util.Date;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Jan 1, 2016
* Encoding:UNIX UTF-8
* @author Andy.Shao
*
*/
public class LocalTimeOperation {
private LocalTimeOperation() {}
/**default convert to date*/
public static final Convert DEFAULT_CONVERT_TO_DATE = lt -> LocalDateTimeOperation.toDate().convert(LocalDateTime.of(LocalDate.now() , lt));
/**
* to date {@link Convert}
* @param zoneId {@link ZoneId}
* @return to date {@link Convert}
*/
public static final Convert toDate(ZoneId zoneId){
return lt -> LocalDateTimeOperation.toDate(zoneId).convert(LocalDateTime.of(LocalDate.now() , lt));
}
/**
* to date
* @return {@link Convert}
*/
public static final Convert toDate(){
return DEFAULT_CONVERT_TO_DATE;
}
/**
* to local time
* @return {@link Convert}
*/
public static final Convert, LocalTime> toLocalTime() {
return pair -> {
TemporalAccessor date = pair.getFirstOrDefault(DateTimeFormatter.ofPattern("HH:mm:ss"))
.parse(pair.getSecond());
return LocalTime.from(date);
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy