
com.zandero.cmd.option.VoidOption Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cmd Show documentation
Show all versions of cmd Show documentation
command line parsing utilities
The newest version!
package com.zandero.cmd.option;
/**
* Placeholder option
*/
public class VoidOption extends CommandOption {
public VoidOption(String name) {
super(name);
}
@Override
public Void parse(String argument) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy