noun
enumerated type; enum
A data type in programming that consists of a set of named values. Common in languages like Java, C#, and TypeScript.
Javaでは、列挙型はenumキーワードを使って定義します。
In Java, enumerated types are defined using the enum keyword.
この列挙型には、赤、青、緑の3つ
This enumerated type has three values: red, blue, and green.