OnJava8-Examples/enums/OverrideConstantSpecific.java

28 lines
651 B
Java
Raw Permalink Normal View History

2015-09-07 11:44:36 -06:00
// enums/OverrideConstantSpecific.java
// (c)2021 MindView LLC: see Copyright.txt
2015-11-15 15:51:35 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2015-06-15 17:47:35 -07:00
public enum OverrideConstantSpecific {
NUT, BOLT,
WASHER {
@Override void f() {
2017-01-20 21:30:44 -08:00
System.out.println("Overridden method");
}
2015-06-15 17:47:35 -07:00
};
2017-01-20 21:30:44 -08:00
void f() {
System.out.println("default behavior");
}
2015-06-15 17:47:35 -07:00
public static void main(String[] args) {
for(OverrideConstantSpecific ocs : values()) {
2015-11-03 12:00:44 -08:00
System.out.print(ocs + ": ");
2015-06-15 17:47:35 -07:00
ocs.f();
}
}
2015-09-07 11:44:36 -06:00
}
/* Output:
2015-06-15 17:47:35 -07:00
NUT: default behavior
BOLT: default behavior
WASHER: Overridden method
2015-09-07 11:44:36 -06:00
*/