OnJava8-Examples/enums/OverrideConstantSpecific.java
2017-01-20 21:30:44 -08:00

29 lines
655 B
Java

// enums/OverrideConstantSpecific.java
// (c)2017 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose.
// Visit http://OnJava8.com for more book information.
public enum OverrideConstantSpecific {
NUT, BOLT,
WASHER {
@Override
void f() {
System.out.println("Overridden method");
}
};
void f() {
System.out.println("default behavior");
}
public static void main(String[] args) {
for(OverrideConstantSpecific ocs : values()) {
System.out.print(ocs + ": ");
ocs.f();
}
}
}
/* Output:
NUT: default behavior
BOLT: default behavior
WASHER: Overridden method
*/