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 4eafe3233a
commit 36920b7e24
2 changed files with 49 additions and 0 deletions

View File

@@ -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();
}
}