Skip to content

Commit f5feacd

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 8518039 + fadbe97 commit f5feacd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/com/actelion/research/util/CommandLineParser.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,11 @@ public List<String> getAsList(String command) {
146146
}
147147
return l;
148148
}
149+
public String [] getAsStringArray(String command) {
150+
String s = hmCommandValue.get(command);
151+
String [] a = s.split(SEP_TAG);
152+
return a;
153+
}
149154
public int [] getAsIntegerArray(String command) {
150155
String s = hmCommandValue.get(command);
151156
String [] a = s.split(SEP_TAG);

0 commit comments

Comments
 (0)