mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
9 lines
187 B
Java
9 lines
187 B
Java
import java.lang.annotation.ElementType;
|
|
|
|
class EnumSynthetics {
|
|
void m() {
|
|
//ElementType[] values = ElementType.values();
|
|
ElementType type = ElementType.valueOf("TYPE");
|
|
}
|
|
}
|