私はそのように列挙型を作成しました:
enum Types { hi, hello, bye }
個々の列挙型の中にゲッターを追加しました。
enum Types {
hi {
String test = "From hi";
public String getString() {
return test;
},
etc.
}
「Types.hi.getString()」を呼び出せない場合を除きます。これを行う方法はありますか?ありがとう!