public enum Test {
a("This is a"),
b("This is b"),
c("This is c"),
d("This is d");
private final String type;
Test(String type) {
this.type = type;
}
public String getType() {
return type;
}
}
上記は私の簡単なコードです。dess を使用して名前を取得する方法を教えてもらえますか?
例: 「This is c」という文字列があり、この文字列を使用して Test.c を取得したい