gpt4 book ai didi

java - 如何使用 "description"找出Java Enum的 "name"

转载 作者:行者123 更新时间:2023-12-03 01:32:22 25 4
gpt4 key购买 nike

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

最佳答案

使用enum的values方法,迭代一下,就可以得到。

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;
}

public static Test getByDesc(String desc){
for(Test t : Test.values()){
if(t.getType().equals(desc)){
return t;
}
}
return null;
}

}

关于java - 如何使用 "description"找出Java Enum的 "name",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15197560/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com