com.github.zhengframework.bootstrap.Arguments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zheng-bootstrap Show documentation
Show all versions of zheng-bootstrap Show documentation
zheng framework module: bootstrap
package com.github.zhengframework.bootstrap;
import joptsimple.OptionParser;
import joptsimple.OptionSet;
import lombok.Getter;
public class Arguments {
@Getter
private final OptionParser optionParser = new OptionParser();
private final String[] arguments;
public Arguments(String[] arguments) {
this.arguments = arguments;
optionParser.allowsUnrecognizedOptions();
}
public OptionSet parse() {
return optionParser.parse(arguments);
}
}