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;
}
}
以上是我的简单代码。有人可以教我如何通过使用 desc 来获取名称吗?
例如:我有一个字符串“This is c”,我想用这个字符串来获取Test.c