mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
13 lines
168 B
Java
13 lines
168 B
Java
package enums;
|
|
|
|
public enum OurEnumWithInitializedConstants {
|
|
A(0) {
|
|
},
|
|
B(1) {
|
|
void foo (){}
|
|
},
|
|
C(new OurBaseInterface() {}) {
|
|
void foo () {}
|
|
}
|
|
}
|