Refactored code to use generic methods and use streams. (#10052)

This commit is contained in:
Umang Budhwar
2020-09-19 21:49:13 +05:30
committed by GitHub
parent 1cd9875381
commit f134833952
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,19 @@
package com.baeldung.reflection.check.staticmethods;
import java.time.LocalDate;
import java.time.LocalTime;
public class StaticUtility {
public static String getAuthorName() {
return "Umang Budhwar";
}
public static LocalDate getLocalDate() {
return LocalDate.now();
}
public static LocalTime getLocalTime() {
return LocalTime.now();
}
}