gpt4 book ai didi

java.util.NoSuchElementException : No value present Java 8 Lambda

转载 作者:行者123 更新时间:2023-11-30 08:11:27 25 4
gpt4 key购买 nike

<分区>

我明白了。但我的列表不是空的,他们有代码为“ADPL”的元素。为什么这还给我 NoSuchElement ?

String retour = CodeExecutionChaine.A.getCode();
if (!lstChaines.isEmpty()) {
retour = lstChaines.stream()
.filter(t -> t.getNomChaine() == Chaines.ADPL.getCode())
.map(Chaine::getStatutChaine)
.findFirst()
.orElse(CodeExecutionChaine.A.getCode());

枚举链

public enum Chaines {

ADPL("ADPL"),
ADIL("ADIL"),
ADSL("ADSL");

private String code = "";

Chaines(String code) {
this.code = code;
}

public String getCode() {
return this.code;
}

}

这对于 CodeExecutionChain 也是一样的

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