/* Copyright 2017 Robert 'Bobby' Zenz Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package picocli.examples; import picocli.CommandLine; import picocli.CommandLine.Option; import picocli.CommandLine.ParameterException; import picocli.CommandLine.Parameters; /** * This example demonstrates the usage with positional parameters. * *

* * When no arguments are provided, the options will have their default values: * *

 * Arguments:
 *   
 * 
 * Options:
 *   name: default
 *   properties:
 * 
* * Positional parameters are parameters which are not specified with a leading * name, for example when the application accepts a list of files as primary * arguments: * *
 * Arguments:
 *   "--name=value" "smart" "intelligent" "strong"
 * 
 * Options:
 *   name: default
 *   properties: "smart" "intelligent" "strong"
 * 
* * It does not matter where in the arguments these parameters are specified, * all positional parameters will be added to the list: * *
 * Arguments:
 *   "smart" "intelligent" "--name=value" "strong"
 * 
 * Options:
 *   name: default
 *   properties: "smart" "intelligent" "strong"
 * 
* * Additionally, one can also specify a separator to be able to specify a list: * *
 * Arguments:
 *   "--name=value" "smart,intelligent,strong"
 * 
 * Options:
 *   name: default
 *   properties: "smart" "intelligent" "strong"
 * 
* * @author Robert 'Bobby' Zenz */ public class PopulatePositionalParametersMain { public static void main(String[] args) { // Create a new Options class, which holds our options. Options options = new Options(); try { // Populate the created class from the command line arguments. CommandLine.populateCommand(options, args); } catch (ParameterException e) { // The given command line arguments are invalid, for example there // are options specified which do not exist or one of the options // is malformed (missing a value, for example). System.out.println(e.getMessage()); CommandLine.usage(options, System.out); return; } // Print the state. System.out.println("Arguments:"); System.out.print(" "); for (String arg : args) { System.out.print("\"" + arg + "\" "); } System.out.println(); System.out.println(); System.out.println("Options:"); System.out.println(" name: " + options.getName()); if (options.getProperties() != null) { System.out.print(" properties: "); for (String property : options.getProperties()) { System.out.print("\"" + property + "\" "); } System.out.println(); } else { System.out.println(" properties:"); } } /** * This is the main container which will be populated by picocli with values * from the arguments. */ private static class Options { @Option(names = { "-n", "--name" }) private String name = "default"; @Parameters(paramLabel = "PROPERTIES", split = ",") private String[] properties = null; public String getName() { return name; } public String[] getProperties() { return properties; } } }