我已经能够从枚举类的值成功加载我的ArrayList。我对使用枚举不是很熟悉,并且我想知道是否有一种方法可以解决这个问题,而不必像我所示的那样为每个枚举键入add。
public enum PartsOfSpeech {
Adjective("Placeholder [adjective] : To be updated..."),
Adverb("Placeholder [adverb] : To be updated..."),
Conjunction("Placeholder [conjection] : To be updated..."),
Interjection("Placeholder [interjection] : To be updated..."),
Noun("Placeholder [noun] : To be updated..."),
Preposition("Placeholder [preposition] : To be updated..."),
Pronoun("Placeholder [pronoun] : To be updated..."),
Verb("Placeholder [verb] : To be updated...");
private String speechValue;
private PartsOfSpeech(String speechValue) {
this.speechValue= speechValue;
}
public String getSpeechValue() {
return speechValue;
}
}
public class Dictionary {
public static void main(String args[]) {
System.out.println("! Loading data...");
Map<String, List<String>> dictionaryMap = new HashMap<String, List<String>>();
List<String> POSList = new ArrayList<>();
POSList.add(PartsOfSpeech.Adjective.getSpeechValue());
POSList.add(PartsOfSpeech.Adverb.getSpeechValue());
POSList.add(PartsOfSpeech.Conjunction.getSpeechValue());
POSList.add(PartsOfSpeech.Interjection.getSpeechValue());
POSList.add(PartsOfSpeech.Noun.getSpeechValue());
POSList.add(PartsOfSpeech.Preposition.getSpeechValue());
POSList.add(PartsOfSpeech.Pronoun.getSpeechValue());
POSList.add(PartsOfSpeech.Verb.getSpeechValue());
dictionaryMap.put("distinct",POSList);
答案 0 :(得分:1)
values()
方法返回一个枚举值数组。您可以遍历这些值,获取语音值,然后将它们添加到列表中。
以下是使用Stream API进行上述操作的方法:
List<String> POSList = Arrays.stream(PartsOfSpeech.values())
.map(PartsOfSpeech::getSpeechValue)
.collect(Collectors.toList());
并且遵循Java命名约定,应该为posList
而不是POSList
。