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.
int列挙型の序数の範囲内にあるかどうかを判断する方法はありますか? 私が安全にできるようにtheEnum.values()[ordinal];?
int
theEnum.values()[ordinal];
if (yourInt >= 0 && yourInt < TheEnum.values().length) { // safe }
その列挙theEnum型の変数ではなく、列挙型である必要があります。TheEnumJava の命名規則に従うために、大文字にしました。
theEnum
TheEnum