2017-01-10 14:11:16 -08:00
|
|
|
// equalshashcode/SpringDetector2.java
|
2020-10-07 13:35:40 -06:00
|
|
|
// (c)2020 MindView LLC: see Copyright.txt
|
2017-01-10 14:11:16 -08:00
|
|
|
// We make no guarantees that this code is fit for any purpose.
|
|
|
|
// Visit http://OnJava8.com for more book information.
|
|
|
|
// A working key
|
|
|
|
|
|
|
|
public class SpringDetector2 {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
SpringDetector.detectSpring(Groundhog2.class);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Output:
|
|
|
|
Groundhog #0: Six more weeks of Winter!
|
|
|
|
Groundhog #1: Early Spring!
|
|
|
|
Groundhog #2: Six more weeks of Winter!
|
|
|
|
Groundhog #3: Early Spring!
|
|
|
|
Groundhog #4: Early Spring!
|
|
|
|
Groundhog #5: Six more weeks of Winter!
|
|
|
|
Groundhog #6: Early Spring!
|
|
|
|
Groundhog #7: Early Spring!
|
|
|
|
Groundhog #8: Six more weeks of Winter!
|
|
|
|
Groundhog #9: Six more weeks of Winter!
|
|
|
|
Looking up prediction for Groundhog #3
|
|
|
|
Early Spring!
|
|
|
|
*/
|