| Class | Description |
|---|---|
| NBootArg | |
| NBootCmdLine |
NCmdLine args=new DefaultNCmdLine(Arrays.asList("--!deleteLog","--deploy","/deploy/path","--deploy=/other-deploy/path","some-param"));
Argument a;
while (args.hasNext()) {
if ((a = args.nextBoolean("--deleteLog").orNull()) != null) {
deleteLog = a.getBooleanValue().get(session);
} else if ((a = args.nextString("--deploy").orNull()) != null) {
apps.add(a.getStringValue().get(session));
} else if ((a = args.next()) != null) {
name = a.getString();
} else {
args.throwUnexpectedArgument();
}
}
|
| NBootWorkspaceCmdLineFormatter | |
| NBootWorkspaceCmdLineParser | |
| NBootWorkspaceOptionsConfig |
Copyright © 2026 vpc open source initiative. All rights reserved.