Uses of Package
net.thevpc.common.commandline
Packages that use net.thevpc.common.commandline
-
Classes in net.thevpc.common.commandline used by net.thevpc.common.commandlineClassDescriptionCreated by vpc on 3/7/17.Created by vpc on 3/7/17.CommandLine args=new CommandLine(Arrays.asList("--!deleteLog","--deploy","/deploy/path","--deploy=/other-deploy/path","some-param")); Argument a; while (args.hasNext()) { if ((a = args.readBooleanOption("--deleteLog")) != null) { deleteLog = a.getBooleanValue(); } else if ((a = args.readStringOption("--deploy")) != null) { apps.add(a.getStringValue()); } else if ((a = args.readNonOption()) != null) { name = a.getString(); } else { args.unexpectedArgument(); } }
-
Classes in net.thevpc.common.commandline used by net.thevpc.common.commandline.formatClassDescriptionCommandLine args=new CommandLine(Arrays.asList("--!deleteLog","--deploy","/deploy/path","--deploy=/other-deploy/path","some-param")); Argument a; while (args.hasNext()) { if ((a = args.readBooleanOption("--deleteLog")) != null) { deleteLog = a.getBooleanValue(); } else if ((a = args.readStringOption("--deploy")) != null) { apps.add(a.getStringValue()); } else if ((a = args.readNonOption()) != null) { name = a.getString(); } else { args.unexpectedArgument(); } }