mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 05:18:06 +07:00
GitOrigin-RevId: 8d9647fe88938d87bcb3d9ddb7c698864c9a22da
9 lines
133 B
Java
9 lines
133 B
Java
enum Test {
|
|
A, B;
|
|
void f<caret>oo() {
|
|
for (Test v : values()) {
|
|
System.out.println(v);
|
|
}
|
|
}
|
|
|
|
} |