We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8518039 + fadbe97 commit f5feacdCopy full SHA for f5feacd
src/main/java/com/actelion/research/util/CommandLineParser.java
@@ -146,6 +146,11 @@ public List<String> getAsList(String command) {
146
}
147
return l;
148
149
+ public String [] getAsStringArray(String command) {
150
+ String s = hmCommandValue.get(command);
151
+ String [] a = s.split(SEP_TAG);
152
+ return a;
153
+ }
154
public int [] getAsIntegerArray(String command) {
155
String s = hmCommandValue.get(command);
156
String [] a = s.split(SEP_TAG);
0 commit comments