Skip to content

Commit 3bc1a90

Browse files
committed
Release picocli version 4.3
1 parent 5fd7460 commit 3bc1a90

File tree

156 files changed

+5909
-1347
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+5909
-1347
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The user manual has an [example](https://picocli.info/#_guice_example) of integr
7373

7474
### Releases
7575
* [All Releases](https://github.com/remkop/picocli/releases)
76-
* Latest: 4.2.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.2.0)
76+
* Latest: 4.3.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.3.0)
7777
* Older: Picocli 4.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v4.0.0)
7878
* Older: Picocli 3.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v3.0.0)
7979
* Older: Picocli 2.0 [Release Notes](https://github.com/remkop/picocli/releases/tag/v2.0.0)
@@ -185,7 +185,7 @@ Join the [picocli Google group](https://groups.google.com/d/forum/picocli) if yo
185185
* [jbang](https://github.com/maxandersen/jbang) not only uses picocli internally, but also has a CLI template to generate an initial script: use `jbang --init=cli helloworld.java` to generate a sample picocli-enabled jbang script. See [asciinema](https://asciinema.org/a/AVwA19yijKRNKEO0bJENN2ME3?autoplay=true&speed=2).
186186

187187

188-
<img src="https://picocli.info/images/downloads-202003.png">
188+
<img src="https://picocli.info/images/downloads-202004.png">
189189

190190
Glad to see more people are using picocli. We must be doing something right. :-)
191191

@@ -195,9 +195,9 @@ If you like picocli, there are a few things you can do to help:
195195
* Upvote my [StackOverflow answer](https://stackoverflow.com/a/43780433/1446916) to "How do I parse command line arguments in Java?"
196196
* Tweet about picocli! What do you like about it? How has it helped you? How is it different from the alternatives?
197197

198-
If you like picocli and your project is on GitHub, consider adding this badge to your README.md: [![picocli](https://img.shields.io/badge/picocli-4.2.0-green.svg)](https://github.com/remkop/picocli)
198+
If you like picocli and your project is on GitHub, consider adding this badge to your README.md: [![picocli](https://img.shields.io/badge/picocli-4.3.0-green.svg)](https://github.com/remkop/picocli)
199199
```
200-
[![picocli](https://img.shields.io/badge/picocli-4.2.0-green.svg)](https://github.com/remkop/picocli)
200+
[![picocli](https://img.shields.io/badge/picocli-4.3.0-green.svg)](https://github.com/remkop/picocli)
201201
```
202202

203203

@@ -285,35 +285,35 @@ See the [source code](https://github.com/remkop/picocli/blob/master/src/main/jav
285285

286286
### Gradle
287287
```
288-
compile 'info.picocli:picocli:4.2.0'
288+
compile 'info.picocli:picocli:4.3.0'
289289
```
290290
### Maven
291291
```
292292
<dependency>
293293
<groupId>info.picocli</groupId>
294294
<artifactId>picocli</artifactId>
295-
<version>4.2.0</version>
295+
<version>4.3.0</version>
296296
</dependency>
297297
```
298298
### Scala SBT
299299
```
300-
libraryDependencies += "info.picocli" % "picocli" % "4.2.0"
300+
libraryDependencies += "info.picocli" % "picocli" % "4.3.0"
301301
```
302302
### Ivy
303303
```
304-
<dependency org="info.picocli" name="picocli" rev="4.2.0" />
304+
<dependency org="info.picocli" name="picocli" rev="4.3.0" />
305305
```
306306
### Grape
307307
```groovy
308308
@Grapes(
309-
@Grab(group='info.picocli', module='picocli', version='4.2.0')
309+
@Grab(group='info.picocli', module='picocli', version='4.3.0')
310310
)
311311
```
312312
### Leiningen
313313
```
314-
[info.picocli/picocli "4.2.0"]
314+
[info.picocli/picocli "4.3.0"]
315315
```
316316
### Buildr
317317
```
318-
'info.picocli:picocli:jar:4.2.0'
318+
'info.picocli:picocli:jar:4.3.0'
319319
```

RELEASE-NOTES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# picocli Release Notes
22

3-
# <a name="4.3.0"></a> Picocli 4.3.0 (UNRELEASED)
3+
# <a name="4.3.0"></a> Picocli 4.3.0
44
The picocli community is pleased to announce picocli 4.3.0.
55

66
This is a fairly big release with 70 [tickets closed](https://github.com/remkop/picocli/milestone/65?closed=1), and over 50 [bugfixes and enhancements](#4.3.0-fixes). Many thanks to the picocli community who contributed 21 pull requests!

docs/A-Whirlwind-Tour-of-Picocli.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@
528528
<h1>A Whirlwind Tour of Picocli</h1>
529529
<div class="details">
530530
<span id="author" class="author">Remko Popma</span><br>
531-
<span id="revnumber">version 4.2.0</span>
531+
<span id="revnumber">version 4.3.0</span>
532532
</div>
533533
</div>
534534
<div id="content">
@@ -1966,7 +1966,7 @@ <h2 id="_conclusion">Conclusion</h2>
19661966
</div>
19671967
<div id="footer">
19681968
<div id="footer-text">
1969-
Version 4.2.0<br>
1969+
Version 4.3.0<br>
19701970
Last updated 2019-11-14 09:38:16 +0900
19711971
</div>
19721972
</div>

docs/announcing-picocli-1.0.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@
528528
<h1>Announcing picocli 1.0 - a mighty tiny command line interface</h1>
529529
<div class="details">
530530
<span id="author" class="author">Remko Popma</span><br>
531-
<span id="revnumber">version 4.2.0,</span>
531+
<span id="revnumber">version 4.3.0,</span>
532532
<span id="revdate">2017-09-10</span>
533533
</div>
534534
</div>
@@ -652,7 +652,7 @@ <h2 id="_feedback_welcome">Feedback Welcome</h2>
652652
</div>
653653
<div id="footer">
654654
<div id="footer-text">
655-
Version 4.2.0<br>
655+
Version 4.3.0<br>
656656
Last updated 2018-12-02 18:44:56 +0900
657657
</div>
658658
</div>

docs/apidocs/allclasses-frame.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_202) on Wed Feb 12 07:12:51 JST 2020 -->
6-
<title>All Classes (picocli 4.2.0 API)</title>
7-
<meta name="date" content="2020-02-12">
5+
<!-- Generated by javadoc (1.8.0_202) on Wed May 13 07:24:47 JST 2020 -->
6+
<title>All Classes (picocli 4.3.0 API)</title>
7+
<meta name="date" content="2020-05-13">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<script type="text/javascript" src="script.js"></script>
1010
</head>
@@ -70,6 +70,7 @@ <h1 class="bar">All&nbsp;Classes</h1>
7070
<li><a href="picocli/CommandLine.Model.ArgSpec.html" title="class in picocli" target="classFrame">CommandLine.Model.ArgSpec</a></li>
7171
<li><a href="picocli/CommandLine.Model.CommandSpec.html" title="class in picocli" target="classFrame">CommandLine.Model.CommandSpec</a></li>
7272
<li><a href="picocli/CommandLine.Model.IAnnotatedElement.html" title="interface in picocli" target="classFrame"><span class="interfaceName">CommandLine.Model.IAnnotatedElement</span></a></li>
73+
<li><a href="picocli/CommandLine.Model.IExtensible.html" title="interface in picocli" target="classFrame"><span class="interfaceName">CommandLine.Model.IExtensible</span></a></li>
7374
<li><a href="picocli/CommandLine.Model.IGetter.html" title="interface in picocli" target="classFrame"><span class="interfaceName">CommandLine.Model.IGetter</span></a></li>
7475
<li><a href="picocli/CommandLine.Model.IOrdered.html" title="interface in picocli" target="classFrame"><span class="interfaceName">CommandLine.Model.IOrdered</span></a></li>
7576
<li><a href="picocli/CommandLine.Model.IScope.html" title="interface in picocli" target="classFrame"><span class="interfaceName">CommandLine.Model.IScope</span></a></li>
@@ -103,7 +104,9 @@ <h1 class="bar">All&nbsp;Classes</h1>
103104
<li><a href="picocli/CommandLine.RunAll.html" title="class in picocli" target="classFrame">CommandLine.RunAll</a></li>
104105
<li><a href="picocli/CommandLine.RunFirst.html" title="class in picocli" target="classFrame">CommandLine.RunFirst</a></li>
105106
<li><a href="picocli/CommandLine.RunLast.html" title="class in picocli" target="classFrame">CommandLine.RunLast</a></li>
107+
<li><a href="picocli/CommandLine.ScopeType.html" title="enum in picocli" target="classFrame">CommandLine.ScopeType</a></li>
106108
<li><a href="picocli/CommandLine.Spec.html" title="annotation in picocli" target="classFrame">CommandLine.Spec</a></li>
109+
<li><a href="picocli/CommandLine.Spec.Target.html" title="enum in picocli" target="classFrame">CommandLine.Spec.Target</a></li>
107110
<li><a href="picocli/CommandLine.TypeConversionException.html" title="class in picocli" target="classFrame">CommandLine.TypeConversionException</a></li>
108111
<li><a href="picocli/CommandLine.Unmatched.html" title="annotation in picocli" target="classFrame">CommandLine.Unmatched</a></li>
109112
<li><a href="picocli/CommandLine.UnmatchedArgumentException.html" title="class in picocli" target="classFrame">CommandLine.UnmatchedArgumentException</a></li>

docs/apidocs/allclasses-noframe.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_202) on Wed Feb 12 07:12:51 JST 2020 -->
6-
<title>All Classes (picocli 4.2.0 API)</title>
7-
<meta name="date" content="2020-02-12">
5+
<!-- Generated by javadoc (1.8.0_202) on Wed May 13 07:24:47 JST 2020 -->
6+
<title>All Classes (picocli 4.3.0 API)</title>
7+
<meta name="date" content="2020-05-13">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<script type="text/javascript" src="script.js"></script>
1010
</head>
@@ -70,6 +70,7 @@ <h1 class="bar">All&nbsp;Classes</h1>
7070
<li><a href="picocli/CommandLine.Model.ArgSpec.html" title="class in picocli">CommandLine.Model.ArgSpec</a></li>
7171
<li><a href="picocli/CommandLine.Model.CommandSpec.html" title="class in picocli">CommandLine.Model.CommandSpec</a></li>
7272
<li><a href="picocli/CommandLine.Model.IAnnotatedElement.html" title="interface in picocli"><span class="interfaceName">CommandLine.Model.IAnnotatedElement</span></a></li>
73+
<li><a href="picocli/CommandLine.Model.IExtensible.html" title="interface in picocli"><span class="interfaceName">CommandLine.Model.IExtensible</span></a></li>
7374
<li><a href="picocli/CommandLine.Model.IGetter.html" title="interface in picocli"><span class="interfaceName">CommandLine.Model.IGetter</span></a></li>
7475
<li><a href="picocli/CommandLine.Model.IOrdered.html" title="interface in picocli"><span class="interfaceName">CommandLine.Model.IOrdered</span></a></li>
7576
<li><a href="picocli/CommandLine.Model.IScope.html" title="interface in picocli"><span class="interfaceName">CommandLine.Model.IScope</span></a></li>
@@ -103,7 +104,9 @@ <h1 class="bar">All&nbsp;Classes</h1>
103104
<li><a href="picocli/CommandLine.RunAll.html" title="class in picocli">CommandLine.RunAll</a></li>
104105
<li><a href="picocli/CommandLine.RunFirst.html" title="class in picocli">CommandLine.RunFirst</a></li>
105106
<li><a href="picocli/CommandLine.RunLast.html" title="class in picocli">CommandLine.RunLast</a></li>
107+
<li><a href="picocli/CommandLine.ScopeType.html" title="enum in picocli">CommandLine.ScopeType</a></li>
106108
<li><a href="picocli/CommandLine.Spec.html" title="annotation in picocli">CommandLine.Spec</a></li>
109+
<li><a href="picocli/CommandLine.Spec.Target.html" title="enum in picocli">CommandLine.Spec.Target</a></li>
107110
<li><a href="picocli/CommandLine.TypeConversionException.html" title="class in picocli">CommandLine.TypeConversionException</a></li>
108111
<li><a href="picocli/CommandLine.Unmatched.html" title="annotation in picocli">CommandLine.Unmatched</a></li>
109112
<li><a href="picocli/CommandLine.UnmatchedArgumentException.html" title="class in picocli">CommandLine.UnmatchedArgumentException</a></li>

docs/apidocs/constant-values.html

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_202) on Wed Feb 12 07:12:51 JST 2020 -->
6-
<title>Constant Field Values (picocli 4.2.0 API)</title>
7-
<meta name="date" content="2020-02-12">
5+
<!-- Generated by javadoc (1.8.0_202) on Wed May 13 07:24:47 JST 2020 -->
6+
<title>Constant Field Values (picocli 4.3.0 API)</title>
7+
<meta name="date" content="2020-05-13">
88
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
99
<script type="text/javascript" src="script.js"></script>
1010
</head>
1111
<body>
1212
<script type="text/javascript"><!--
1313
try {
1414
if (location.href.indexOf('is-external=true') == -1) {
15-
parent.document.title="Constant Field Values (picocli 4.2.0 API)";
15+
parent.document.title="Constant Field Values (picocli 4.3.0 API)";
1616
}
1717
}
1818
catch(err) {
@@ -141,7 +141,7 @@ <h2 title="picocli">picocli.*</h2>
141141
<!-- -->
142142
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
143143
<td><code><a href="picocli/CommandLine.html#VERSION">VERSION</a></code></td>
144-
<td class="colLast"><code>"4.2.0"</code></td>
144+
<td class="colLast"><code>"4.3.0"</code></td>
145145
</tr>
146146
</tbody>
147147
</table>
@@ -314,83 +314,90 @@ <h2 title="picocli">picocli.*</h2>
314314
<td class="colLast"><code>"descriptionHeading"</code></td>
315315
</tr>
316316
<tr class="altColor">
317+
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_END_OF_OPTIONS">
318+
<!-- -->
319+
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
320+
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_END_OF_OPTIONS">SECTION_KEY_END_OF_OPTIONS</a></code></td>
321+
<td class="colLast"><code>"endOfOptionsList"</code></td>
322+
</tr>
323+
<tr class="rowColor">
317324
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_EXIT_CODE_LIST">
318325
<!-- -->
319326
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
320327
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_EXIT_CODE_LIST">SECTION_KEY_EXIT_CODE_LIST</a></code></td>
321328
<td class="colLast"><code>"exitCodeList"</code></td>
322329
</tr>
323-
<tr class="rowColor">
330+
<tr class="altColor">
324331
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_EXIT_CODE_LIST_HEADING">
325332
<!-- -->
326333
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
327334
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_EXIT_CODE_LIST_HEADING">SECTION_KEY_EXIT_CODE_LIST_HEADING</a></code></td>
328335
<td class="colLast"><code>"exitCodeListHeading"</code></td>
329336
</tr>
330-
<tr class="altColor">
337+
<tr class="rowColor">
331338
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_FOOTER">
332339
<!-- -->
333340
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
334341
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_FOOTER">SECTION_KEY_FOOTER</a></code></td>
335342
<td class="colLast"><code>"footer"</code></td>
336343
</tr>
337-
<tr class="rowColor">
344+
<tr class="altColor">
338345
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_FOOTER_HEADING">
339346
<!-- -->
340347
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
341348
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_FOOTER_HEADING">SECTION_KEY_FOOTER_HEADING</a></code></td>
342349
<td class="colLast"><code>"footerHeading"</code></td>
343350
</tr>
344-
<tr class="altColor">
351+
<tr class="rowColor">
345352
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_HEADER">
346353
<!-- -->
347354
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
348355
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_HEADER">SECTION_KEY_HEADER</a></code></td>
349356
<td class="colLast"><code>"header"</code></td>
350357
</tr>
351-
<tr class="rowColor">
358+
<tr class="altColor">
352359
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_HEADER_HEADING">
353360
<!-- -->
354361
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
355362
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_HEADER_HEADING">SECTION_KEY_HEADER_HEADING</a></code></td>
356363
<td class="colLast"><code>"headerHeading"</code></td>
357364
</tr>
358-
<tr class="altColor">
365+
<tr class="rowColor">
359366
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_OPTION_LIST">
360367
<!-- -->
361368
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
362369
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_OPTION_LIST">SECTION_KEY_OPTION_LIST</a></code></td>
363370
<td class="colLast"><code>"optionList"</code></td>
364371
</tr>
365-
<tr class="rowColor">
372+
<tr class="altColor">
366373
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_OPTION_LIST_HEADING">
367374
<!-- -->
368375
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
369376
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_OPTION_LIST_HEADING">SECTION_KEY_OPTION_LIST_HEADING</a></code></td>
370377
<td class="colLast"><code>"optionListHeading"</code></td>
371378
</tr>
372-
<tr class="altColor">
379+
<tr class="rowColor">
373380
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_PARAMETER_LIST">
374381
<!-- -->
375382
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
376383
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_PARAMETER_LIST">SECTION_KEY_PARAMETER_LIST</a></code></td>
377384
<td class="colLast"><code>"parameterList"</code></td>
378385
</tr>
379-
<tr class="rowColor">
386+
<tr class="altColor">
380387
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_PARAMETER_LIST_HEADING">
381388
<!-- -->
382389
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
383390
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_PARAMETER_LIST_HEADING">SECTION_KEY_PARAMETER_LIST_HEADING</a></code></td>
384391
<td class="colLast"><code>"parameterListHeading"</code></td>
385392
</tr>
386-
<tr class="altColor">
393+
<tr class="rowColor">
387394
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_SYNOPSIS">
388395
<!-- -->
389396
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
390397
<td><code><a href="picocli/CommandLine.Model.UsageMessageSpec.html#SECTION_KEY_SYNOPSIS">SECTION_KEY_SYNOPSIS</a></code></td>
391398
<td class="colLast"><code>"synopsis"</code></td>
392399
</tr>
393-
<tr class="rowColor">
400+
<tr class="altColor">
394401
<td class="colFirst"><a name="picocli.CommandLine.Model.UsageMessageSpec.SECTION_KEY_SYNOPSIS_HEADING">
395402
<!-- -->
396403
</a><code>public&nbsp;static&nbsp;final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>

0 commit comments

Comments
 (0)