Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Scala でアクセスできない場合:
// Groovy class Outer { enum Enum { VALUE } }
Scala が列挙型にアクセスできるようにするには、何をする必要がありますか?
Java とは異なり、Groovy の列挙型は暗黙的に静的ではありません。以下により、Scala からアクセスできるようになります。
// Groovy class Outer { static enum Enum { VALUE } }