jar

com.github.brunoais : cli-args-parser

Maven & Gradle

Oct 10, 2016
1 stars

com.github.brunoais.CliArgsParser · This project is a feature-lean implementation of a CLI arguments parser. Just start by creating an instance of ParseArgs and follow the available methods. E.g. ParseArgs when = new ParseArgs(); when.argument("-do").spaceValue().call(this::doArgument); when.argument(null).call(this::defaultArgument); when.parse(args);

Table Of Contents

Latest Version

Download com.github.brunoais : cli-args-parser JAR file - Latest Versions:

All Versions

Download com.github.brunoais : cli-args-parser JAR file - All Versions:

Version Vulnerabilities Size Updated
0.3.x
0.2.x

View Java Class Source Code in JAR file

  1. Download JD-GUI to open JAR file and explore Java source code file (.class .java)
  2. Click menu "File → Open File..." or just drag-and-drop the JAR file in the JD-GUI window cli-args-parser-0.2.2.jar file.
    Once you open a JAR file, all the java classes in the JAR file will be displayed.

org.github.brunoais.cli_args_parser

├─ org.github.brunoais.cli_args_parser.Argument.class - [JAR]

├─ org.github.brunoais.cli_args_parser.ParseArgs.class - [JAR]

├─ org.github.brunoais.cli_args_parser.UnexpectedEndOfArgs.class - [JAR]

org.github.brunoais.cli_args_parser.callbacks

├─ org.github.brunoais.cli_args_parser.callbacks.DoubleValCallback.class - [JAR]

├─ org.github.brunoais.cli_args_parser.callbacks.NoValCallback.class - [JAR]

├─ org.github.brunoais.cli_args_parser.callbacks.QuadrupleValCallback.class - [JAR]

├─ org.github.brunoais.cli_args_parser.callbacks.SingleValCallback.class - [JAR]

├─ org.github.brunoais.cli_args_parser.callbacks.TripleValCallback.class - [JAR]

├─ org.github.brunoais.cli_args_parser.callbacks.ValCallback.class - [JAR]

Advertisement