How to iterate through pluginOptions? #2858
Answered
by
Mygod
segfault-bilibili
asked this question in
Q&A
-
I'm not sure whether something like this will work: Set<String> keys = pluginOptions.getKeys();
for (String key : keys) {
String value = pluginOptions.get(key);
// do something
} |
Beta Was this translation helpful? Give feedback.
Answered by
Mygod
Feb 12, 2022
Replies: 1 comment 2 replies
-
The same way that you iterate over any |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
segfault-bilibili
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
The same way that you iterate over any
HashMap
.