This file is indexed.

/usr/share/doc/libjsap-java/api/com/martiansoftware/jsap/JSAP.html is in libjsap-java-doc 2.1-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html>
<head>
<!-- Generated by javadoc -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSAP (JSAP 2.1 API)</title>
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
    try {
        if (location.href.indexOf('is-external=true') == -1) {
            parent.document.title="JSAP (JSAP 2.1 API)";
        }
    }
    catch(err) {
    }
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!--   -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/JSAP.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../com/martiansoftware/jsap/IllegalMultipleDeclarationException.html" title="class in com.martiansoftware.jsap"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../com/martiansoftware/jsap/JSAPException.html" title="class in com.martiansoftware.jsap"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/martiansoftware/jsap/JSAP.html" target="_top">Frames</a></li>
<li><a href="JSAP.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.martiansoftware.jsap</div>
<h2 title="Class JSAP" class="title">Class JSAP</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li>com.martiansoftware.jsap.JSAP</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../../com/martiansoftware/jsap/SimpleJSAP.html" title="class in com.martiansoftware.jsap">SimpleJSAP</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">JSAP</span>
extends <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></pre>
<div class="block">The core class of the JSAP (Java Simple Argument Parser) API.

 <p>A JSAP is responsible for converting an array of Strings, typically
 received from a  command line in the main class' main() method, into a
 collection of Objects that are retrievable by a unique ID assigned by the
 developer.</p>

 <p>Before a JSAP parses a command line, it is configured with the Switches,
 FlaggedOptions, and UnflaggedOptions it will accept.  As a result, the
 developer can rest assured that if no Exceptions are thrown by the JSAP's
 parse() method, the entire command line was parsed successfully.</p>

 <p>For example, to parse a command line with the syntax "[--verbose]
 {-n|--number} Mynumber", the following code could be used:</p.

 <code><pre>
 JSAP myJSAP = new JSAP();
 myJSAP.registerParameter( new Switch( "verboseSwitch", JSAP.NO_SHORTFLAG,
 "verbose" ) );
 myJSAP.registerParameter( new FlaggedOption( "numberOption", new
 IntegerStringParser(), JSAP.NO_DEFAULT,
 JSAP.NOT_REQUIRED, 'n', "number" ) );
 JSAPResult result = myJSAP.parse(args);
 </pre></code>

 <p>The results of the parse could then be obtained with:</p>

 <code><pre>
 int n = result.getInt("numberOption");
 boolean isVerbose = result.getBoolean("verboseSwitch");
 </pre></code>

 <h3>Generating a JSAP from ANT</h3>
 <p>If you don't want to register all your parameters manually as shown
 above, the JSAP API provides a custom ANT task that will generate a
 custom JSAP subclass to suit your needs.  See
 com.martiansoftware.jsap.ant.JSAPAntTask for details.</p>
 <p>See the accompanying documentation for examples and further information.</div>
<dl>
<dt><span class="simpleTagLabel">Author:</span></dt>
<dd><a href="http://www.martiansoftware.com/contact.html">Marty Lamb</a>, Klaus Berg (bug fixes in help generation), Wolfram Esser (contributed code for custom line separators in help)</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/ant/JSAPAntTask.html" title="class in com.martiansoftware.jsap.ant"><code>JSAPAntTask</code></a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/BigDecimalStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">BigDecimalStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#BIGDECIMAL_PARSER">BIGDECIMAL_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/BigDecimalStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>BigDecimalStringParser</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/BigIntegerStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">BigIntegerStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#BIGINTEGER_PARSER">BIGINTEGER_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/BigIntegerStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>BigIntegerStringParser</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/BooleanStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">BooleanStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#BOOLEAN_PARSER">BOOLEAN_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/BooleanStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>BooleanStringParser</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/ByteStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">ByteStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#BYTE_PARSER">BYTE_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/ByteStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>ByteStringParser</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/CharacterStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">CharacterStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#CHARACTER_PARSER">CHARACTER_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/CharacterStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>CharacterStringParser</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/ClassStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">ClassStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#CLASS_PARSER">CLASS_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/ClassStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>ClassStringParser</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/ColorStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">ColorStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#COLOR_PARSER">COLOR_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/ColorStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>ColorStringParser</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static char</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#DEFAULT_LISTSEPARATOR">DEFAULT_LISTSEPARATOR</a></span></code>
<div class="block">The default separator for list parameters (equivalent to
 java.io.File.pathSeparatorChar)</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://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>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#DEFAULT_PARAM_HELP_SEPARATOR">DEFAULT_PARAM_HELP_SEPARATOR</a></span></code>
<div class="block">The default separator between parameters in generated help (a newline
 by default)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#DEFAULT_SCREENWIDTH">DEFAULT_SCREENWIDTH</a></span></code>
<div class="block">The default screen width used for formatting help.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/DoubleStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">DoubleStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#DOUBLE_PARSER">DOUBLE_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/DoubleStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>DoubleStringParser</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/FloatStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">FloatStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#FLOAT_PARSER">FLOAT_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/FloatStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>FloatStringParser</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#GREEDY">GREEDY</a></span></code>
<div class="block">The parameter consumes the command line.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/InetAddressStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">InetAddressStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#INETADDRESS_PARSER">INETADDRESS_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/InetAddressStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>InetAddressStringParser</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/IntegerStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">IntegerStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#INTEGER_PARSER">INTEGER_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/IntegerStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>IntegerStringParser</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/IntSizeStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">IntSizeStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#INTSIZE_PARSER">INTSIZE_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/IntSizeStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>IntSizeStringParser</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#LIST">LIST</a></span></code>
<div class="block">The parameter is a list.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/LongStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">LongStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#LONG_PARSER">LONG_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/LongStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>LongStringParser</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/LongSizeStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">LongSizeStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#LONGSIZE_PARSER">LONGSIZE_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/LongSizeStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>LongSizeStringParser</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#MULTIPLEDECLARATIONS">MULTIPLEDECLARATIONS</a></span></code>
<div class="block">The parameter allows multiple declarations.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://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>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#NO_DEFAULT">NO_DEFAULT</a></span></code>
<div class="block">The parameter has no default value.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="http://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>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#NO_HELP">NO_HELP</a></span></code>
<div class="block">The parameter has no help text.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://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>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#NO_LONGFLAG">NO_LONGFLAG</a></span></code>
<div class="block">Does not have a long flag.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#NO_MULTIPLEDECLARATIONS">NO_MULTIPLEDECLARATIONS</a></span></code>
<div class="block">The parameter does not allow multiple declarations.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static char</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#NO_SHORTFLAG">NO_SHORTFLAG</a></span></code>
<div class="block">Does not have a short flag.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#NOT_GREEDY">NOT_GREEDY</a></span></code>
<div class="block">The parameter does not consume the command line.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#NOT_LIST">NOT_LIST</a></span></code>
<div class="block">The parameter is not a list.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#NOT_REQUIRED">NOT_REQUIRED</a></span></code>
<div class="block">The parameter is not required.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/PackageStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">PackageStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#PACKAGE_PARSER">PACKAGE_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/PackageStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>PackageStringParser</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#REQUIRED">REQUIRED</a></span></code>
<div class="block">The parameter is required.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/ShortStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">ShortStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#SHORT_PARSER">SHORT_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/ShortStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>ShortStringParser</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/StringStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">StringStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#STRING_PARSER">STRING_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/StringStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>StringStringParser</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../com/martiansoftware/jsap/stringparsers/URLStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">URLStringParser</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#URL_PARSER">URL_PARSER</a></span></code>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/URLStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>URLStringParser</code></a>.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#JSAP--">JSAP</a></span>()</code>
<div class="block">Creates a new JSAP with an empty configuration.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#JSAP-java.lang.String-">JSAP</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;resourceName)</code>
<div class="block">Creates a new JSAP configured as specified in the referenced xml.</div>
</td>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#JSAP-java.net.URL-">JSAP</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a>&nbsp;jsapXML)</code>
<div class="block">Creates a new JSAP configured as specified in the referenced xml.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#finalize--">finalize</a></span>()</code>
<div class="block">Unregisters all registered AbstractParameters, allowing them to perform
 their cleanup.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../com/martiansoftware/jsap/Parameter.html" title="class in com.martiansoftware.jsap">Parameter</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getByID-java.lang.String-">getByID</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;id)</code>
<div class="block">Returns the requested Switch, FlaggedOption, or UnflaggedOption with the
 specified ID.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="../../../com/martiansoftware/jsap/Flagged.html" title="interface in com.martiansoftware.jsap">Flagged</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getByLongFlag-java.lang.String-">getByLongFlag</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;longFlag)</code>
<div class="block">Returns the requested Switch or FlaggedOption with the specified long
 flag.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code><a href="../../../com/martiansoftware/jsap/Flagged.html" title="interface in com.martiansoftware.jsap">Flagged</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getByShortFlag-char-">getByShortFlag</a></span>(char&nbsp;shortFlag)</code>
<div class="block">Returns the requested Switch or FlaggedOption with the specified short
 flag.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code><a href="../../../com/martiansoftware/jsap/Flagged.html" title="interface in com.martiansoftware.jsap">Flagged</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getByShortFlag-java.lang.Character-">getByShortFlag</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true" title="class or interface in java.lang">Character</a>&nbsp;shortFlag)</code>
<div class="block">Returns the requested Switch or FlaggedOption with the specified short
 flag.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>protected <a href="../../../com/martiansoftware/jsap/Defaults.html" title="class in com.martiansoftware.jsap">Defaults</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getDefaults-com.martiansoftware.jsap.ExceptionMap-">getDefaults</a></span>(<a href="../../../com/martiansoftware/jsap/ExceptionMap.html" title="interface in com.martiansoftware.jsap">ExceptionMap</a>&nbsp;exceptionMap)</code>
<div class="block">Returns a Defaults object representing the merged Defaults of every
 DefaultSource in the DefaultSource chain and the default values specified
 in the AbstractParameters themselves.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code><a href="http://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>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getHelp--">getHelp</a></span>()</code>
<div class="block">A shortcut method for calling getHelp(80, "\n").</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code><a href="http://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>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getHelp-int-">getHelp</a></span>(int&nbsp;screenWidth)</code>
<div class="block">A shortcut method for calling getHelp(screenWidth, "\n").</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code><a href="http://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>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getHelp-int-java.lang.String-">getHelp</a></span>(int&nbsp;screenWidth,
       <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;paramSeparator)</code>
<div class="block">If the help text has been manually set, this method simply
 returns it, ignoring the screenWidth parameter.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code><a href="../../../com/martiansoftware/jsap/IDMap.html" title="class in com.martiansoftware.jsap">IDMap</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getIDMap--">getIDMap</a></span>()</code>
<div class="block">Returns an IDMap associating long and short flags with their associated
 parameters' IDs, and allowing the listing of IDs.</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getUnflaggedOptionsIterator--">getUnflaggedOptionsIterator</a></span>()</code>
<div class="block">Returns an Iterator over all UnflaggedOptions currently registered with
 this JSAP.</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code><a href="http://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>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#getUsage--">getUsage</a></span>()</code>
<div class="block">Returns an automatically generated usage description based upon this
 JSAP's  current configuration.</div>
</td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code><a href="../../../com/martiansoftware/jsap/JSAPResult.html" title="class in com.martiansoftware.jsap">JSAPResult</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#parse-java.lang.String-">parse</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;cmdLine)</code>
<div class="block">Parses the specified command line.</div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code><a href="../../../com/martiansoftware/jsap/JSAPResult.html" title="class in com.martiansoftware.jsap">JSAPResult</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#parse-java.lang.String:A-">parse</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;args)</code>
<div class="block">Parses the specified command line array.</div>
</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#registerDefaultSource-com.martiansoftware.jsap.DefaultSource-">registerDefaultSource</a></span>(<a href="../../../com/martiansoftware/jsap/DefaultSource.html" title="interface in com.martiansoftware.jsap">DefaultSource</a>&nbsp;ds)</code>
<div class="block">Registers a new DefaultSource with this JSAP, at the end of the current
 DefaultSource chain, but before the defaults defined within the
 AbstractParameters themselves.</div>
</td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#registerParameter-com.martiansoftware.jsap.Parameter-">registerParameter</a></span>(<a href="../../../com/martiansoftware/jsap/Parameter.html" title="class in com.martiansoftware.jsap">Parameter</a>&nbsp;param)</code>
<div class="block">Registers the specified Parameter (i.e., Switch, FlaggedOption,
 or UnflaggedOption) with this JSAP.</div>
</td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#setHelp-java.lang.String-">setHelp</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;help)</code>
<div class="block">Sets the help string manually, overriding the automatically-
 generated String.</div>
</td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#setUsage-java.lang.String-">setUsage</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;usage)</code>
<div class="block">Sets the usage string manually, overriding the automatically-
 generated String.</div>
</td>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><code><a href="http://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>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#toString--">toString</a></span>()</code>
<div class="block">Returns an automatically generated usage description based upon this
 JSAP's  current configuration.</div>
</td>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#unregisterDefaultSource-com.martiansoftware.jsap.DefaultSource-">unregisterDefaultSource</a></span>(<a href="../../../com/martiansoftware/jsap/DefaultSource.html" title="interface in com.martiansoftware.jsap">DefaultSource</a>&nbsp;ds)</code>
<div class="block">Removes the specified DefaultSource from this JSAP's DefaultSource chain.</div>
</td>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/martiansoftware/jsap/JSAP.html#unregisterParameter-com.martiansoftware.jsap.Parameter-">unregisterParameter</a></span>(<a href="../../../com/martiansoftware/jsap/Parameter.html" title="class in com.martiansoftware.jsap">Parameter</a>&nbsp;param)</code>
<div class="block">Unregisters the specified Parameter (i.e., Switch, FlaggedOption,
 or UnflaggedOption) from this JSAP.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="NO_SHORTFLAG">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_SHORTFLAG</h4>
<pre>public static final&nbsp;char NO_SHORTFLAG</pre>
<div class="block">Does not have a short flag.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/FlaggedOption.html" title="class in com.martiansoftware.jsap"><code>FlaggedOption</code></a>, 
<a href="../../../com/martiansoftware/jsap/UnflaggedOption.html" title="class in com.martiansoftware.jsap"><code>UnflaggedOption</code></a>, 
<a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.NO_SHORTFLAG">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="NO_LONGFLAG">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_LONGFLAG</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> NO_LONGFLAG</pre>
<div class="block">Does not have a long flag.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/FlaggedOption.html" title="class in com.martiansoftware.jsap"><code>FlaggedOption</code></a>, 
<a href="../../../com/martiansoftware/jsap/UnflaggedOption.html" title="class in com.martiansoftware.jsap"><code>UnflaggedOption</code></a></dd>
</dl>
</li>
</ul>
<a name="DEFAULT_LISTSEPARATOR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEFAULT_LISTSEPARATOR</h4>
<pre>public static final&nbsp;char DEFAULT_LISTSEPARATOR</pre>
<div class="block">The default separator for list parameters (equivalent to
 java.io.File.pathSeparatorChar)</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/FlaggedOption.html#setListSeparator-char-"><code>FlaggedOption.setListSeparator(char)</code></a></dd>
</dl>
</li>
</ul>
<a name="DEFAULT_PARAM_HELP_SEPARATOR">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEFAULT_PARAM_HELP_SEPARATOR</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> DEFAULT_PARAM_HELP_SEPARATOR</pre>
<div class="block">The default separator between parameters in generated help (a newline
 by default)</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.DEFAULT_PARAM_HELP_SEPARATOR">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="REQUIRED">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>REQUIRED</h4>
<pre>public static final&nbsp;boolean REQUIRED</pre>
<div class="block">The parameter is required.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/FlaggedOption.html#setRequired-boolean-"><code>FlaggedOption.setRequired(boolean)</code></a>, 
<a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.REQUIRED">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="NOT_REQUIRED">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOT_REQUIRED</h4>
<pre>public static final&nbsp;boolean NOT_REQUIRED</pre>
<div class="block">The parameter is not required.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/FlaggedOption.html#setRequired-boolean-"><code>FlaggedOption.setRequired(boolean)</code></a>, 
<a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.NOT_REQUIRED">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="LIST">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LIST</h4>
<pre>public static final&nbsp;boolean LIST</pre>
<div class="block">The parameter is a list.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/FlaggedOption.html#setList-boolean-"><code>FlaggedOption.setList(boolean)</code></a>, 
<a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.LIST">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="NOT_LIST">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOT_LIST</h4>
<pre>public static final&nbsp;boolean NOT_LIST</pre>
<div class="block">The parameter is not a list.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/FlaggedOption.html#setList-boolean-"><code>FlaggedOption.setList(boolean)</code></a>, 
<a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.NOT_LIST">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MULTIPLEDECLARATIONS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MULTIPLEDECLARATIONS</h4>
<pre>public static final&nbsp;boolean MULTIPLEDECLARATIONS</pre>
<div class="block">The parameter allows multiple declarations.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/FlaggedOption.html#setAllowMultipleDeclarations-boolean-"><code>FlaggedOption.setAllowMultipleDeclarations(boolean)</code></a>, 
<a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.MULTIPLEDECLARATIONS">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="NO_MULTIPLEDECLARATIONS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_MULTIPLEDECLARATIONS</h4>
<pre>public static final&nbsp;boolean NO_MULTIPLEDECLARATIONS</pre>
<div class="block">The parameter does not allow multiple declarations.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/FlaggedOption.html#setAllowMultipleDeclarations-boolean-"><code>FlaggedOption.setAllowMultipleDeclarations(boolean)</code></a>, 
<a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.NO_MULTIPLEDECLARATIONS">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="GREEDY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>GREEDY</h4>
<pre>public static final&nbsp;boolean GREEDY</pre>
<div class="block">The parameter consumes the command line.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/UnflaggedOption.html#setGreedy-boolean-"><code>UnflaggedOption.setGreedy(boolean)</code></a>, 
<a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.GREEDY">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="NOT_GREEDY">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOT_GREEDY</h4>
<pre>public static final&nbsp;boolean NOT_GREEDY</pre>
<div class="block">The parameter does not consume the command line.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/UnflaggedOption.html#setGreedy-boolean-"><code>UnflaggedOption.setGreedy(boolean)</code></a>, 
<a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.NOT_GREEDY">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="NO_DEFAULT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_DEFAULT</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> NO_DEFAULT</pre>
<div class="block">The parameter has no default value.</div>
</li>
</ul>
<a name="NO_HELP">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NO_HELP</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> NO_HELP</pre>
<div class="block">The parameter has no help text.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/Parameter.html#setHelp-java.lang.String-"><code>Parameter.setHelp(String)</code></a></dd>
</dl>
</li>
</ul>
<a name="BIGDECIMAL_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BIGDECIMAL_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/BigDecimalStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">BigDecimalStringParser</a> BIGDECIMAL_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/BigDecimalStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>BigDecimalStringParser</code></a>.</div>
</li>
</ul>
<a name="BIGINTEGER_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BIGINTEGER_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/BigIntegerStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">BigIntegerStringParser</a> BIGINTEGER_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/BigIntegerStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>BigIntegerStringParser</code></a>.</div>
</li>
</ul>
<a name="BOOLEAN_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BOOLEAN_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/BooleanStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">BooleanStringParser</a> BOOLEAN_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/BooleanStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>BooleanStringParser</code></a>.</div>
</li>
</ul>
<a name="BYTE_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>BYTE_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/ByteStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">ByteStringParser</a> BYTE_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/ByteStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>ByteStringParser</code></a>.</div>
</li>
</ul>
<a name="CHARACTER_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CHARACTER_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/CharacterStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">CharacterStringParser</a> CHARACTER_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/CharacterStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>CharacterStringParser</code></a>.</div>
</li>
</ul>
<a name="CLASS_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CLASS_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/ClassStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">ClassStringParser</a> CLASS_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/ClassStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>ClassStringParser</code></a>.</div>
</li>
</ul>
<a name="COLOR_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>COLOR_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/ColorStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">ColorStringParser</a> COLOR_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/ColorStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>ColorStringParser</code></a>.</div>
</li>
</ul>
<a name="DOUBLE_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DOUBLE_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/DoubleStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">DoubleStringParser</a> DOUBLE_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/DoubleStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>DoubleStringParser</code></a>.</div>
</li>
</ul>
<a name="FLOAT_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FLOAT_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/FloatStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">FloatStringParser</a> FLOAT_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/FloatStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>FloatStringParser</code></a>.</div>
</li>
</ul>
<a name="INETADDRESS_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INETADDRESS_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/InetAddressStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">InetAddressStringParser</a> INETADDRESS_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/InetAddressStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>InetAddressStringParser</code></a>.</div>
</li>
</ul>
<a name="INTEGER_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INTEGER_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/IntegerStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">IntegerStringParser</a> INTEGER_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/IntegerStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>IntegerStringParser</code></a>.</div>
</li>
</ul>
<a name="INTSIZE_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INTSIZE_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/IntSizeStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">IntSizeStringParser</a> INTSIZE_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/IntSizeStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>IntSizeStringParser</code></a>.</div>
</li>
</ul>
<a name="LONGSIZE_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LONGSIZE_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/LongSizeStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">LongSizeStringParser</a> LONGSIZE_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/LongSizeStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>LongSizeStringParser</code></a>.</div>
</li>
</ul>
<a name="LONG_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>LONG_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/LongStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">LongStringParser</a> LONG_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/LongStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>LongStringParser</code></a>.</div>
</li>
</ul>
<a name="PACKAGE_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PACKAGE_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/PackageStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">PackageStringParser</a> PACKAGE_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/PackageStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>PackageStringParser</code></a>.</div>
</li>
</ul>
<a name="SHORT_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SHORT_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/ShortStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">ShortStringParser</a> SHORT_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/ShortStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>ShortStringParser</code></a>.</div>
</li>
</ul>
<a name="STRING_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STRING_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/StringStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">StringStringParser</a> STRING_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/StringStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>StringStringParser</code></a>.</div>
</li>
</ul>
<a name="URL_PARSER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>URL_PARSER</h4>
<pre>public static final&nbsp;<a href="../../../com/martiansoftware/jsap/stringparsers/URLStringParser.html" title="class in com.martiansoftware.jsap.stringparsers">URLStringParser</a> URL_PARSER</pre>
<div class="block">The only instance of a <a href="../../../com/martiansoftware/jsap/stringparsers/URLStringParser.html" title="class in com.martiansoftware.jsap.stringparsers"><code>URLStringParser</code></a>.</div>
</li>
</ul>
<a name="DEFAULT_SCREENWIDTH">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>DEFAULT_SCREENWIDTH</h4>
<pre>public static final&nbsp;int DEFAULT_SCREENWIDTH</pre>
<div class="block">The default screen width used for formatting help.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#com.martiansoftware.jsap.JSAP.DEFAULT_SCREENWIDTH">Constant Field Values</a></dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="JSAP--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JSAP</h4>
<pre>public&nbsp;JSAP()</pre>
<div class="block">Creates a new JSAP with an empty configuration.  It must be configured
 with registerParameter() before its parse() methods may be called.</div>
</li>
</ul>
<a name="JSAP-java.net.URL-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JSAP</h4>
<pre>public&nbsp;JSAP(<a href="http://docs.oracle.com/javase/8/docs/api/java/net/URL.html?is-external=true" title="class or interface in java.net">URL</a>&nbsp;jsapXML)
     throws <a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a>,
            <a href="../../../com/martiansoftware/jsap/JSAPException.html" title="class in com.martiansoftware.jsap">JSAPException</a></pre>
<div class="block">Creates a new JSAP configured as specified in the referenced xml.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>jsapXML</code> - reference to xml representation of the JSAP configuration</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code> - if an I/O error occurs</dd>
<dd><code><a href="../../../com/martiansoftware/jsap/JSAPException.html" title="class in com.martiansoftware.jsap">JSAPException</a></code> - if the configuration is not valid</dd>
</dl>
</li>
</ul>
<a name="JSAP-java.lang.String-">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>JSAP</h4>
<pre>public&nbsp;JSAP(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;resourceName)
     throws <a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a>,
            <a href="../../../com/martiansoftware/jsap/JSAPException.html" title="class in com.martiansoftware.jsap">JSAPException</a></pre>
<div class="block">Creates a new JSAP configured as specified in the referenced xml.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>resourceName</code> - name of the resource (accessible via this JSAP's classloader)
 containing the xml representation of the JSAP configuration</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true" title="class or interface in java.io">IOException</a></code> - if an I/O error occurs</dd>
<dd><code><a href="../../../com/martiansoftware/jsap/JSAPException.html" title="class in com.martiansoftware.jsap">JSAPException</a></code> - if the configuration is not valid</dd>
</dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="setUsage-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setUsage</h4>
<pre>public&nbsp;void&nbsp;setUsage(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;usage)</pre>
<div class="block">Sets the usage string manually, overriding the automatically-
 generated String.  To remove the override, call setUsage(null).</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>usage</code> - the manually-set usage string.</dd>
</dl>
</li>
</ul>
<a name="setHelp-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setHelp</h4>
<pre>public&nbsp;void&nbsp;setHelp(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;help)</pre>
<div class="block">Sets the help string manually, overriding the automatically-
 generated String.  To remove the override, call setHelp(null).</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>help</code> - the manualy-set help string.</dd>
</dl>
</li>
</ul>
<a name="getHelp--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHelp</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getHelp()</pre>
<div class="block">A shortcut method for calling getHelp(80, "\n").</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the same as gethelp(80, "\n")</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/JSAP.html#getHelp-int-java.lang.String-"><code>getHelp(int,String)</code></a></dd>
</dl>
</li>
</ul>
<a name="getHelp-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHelp</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getHelp(int&nbsp;screenWidth)</pre>
<div class="block">A shortcut method for calling getHelp(screenWidth, "\n").</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>screenWidth</code> - the screen width for which to format the help.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the same as gethelp(screenWidth, "\n")</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/JSAP.html#getHelp-int-java.lang.String-"><code>getHelp(int,String)</code></a></dd>
</dl>
</li>
</ul>
<a name="getHelp-int-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getHelp</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getHelp(int&nbsp;screenWidth,
                      <a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;paramSeparator)</pre>
<div class="block">If the help text has been manually set, this method simply
 returns it, ignoring the screenWidth parameter.  Otherwise,
 an automatically-formatted help message is returned, tailored
 to the specified screen width.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>screenWidth</code> - the screen width (in characters) for which
 the help text will be formatted.  If zero, help will not be
 line-wrapped.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>complete help text for this JSAP.</dd>
</dl>
</li>
</ul>
<a name="getUsage--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUsage</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getUsage()</pre>
<div class="block">Returns an automatically generated usage description based upon this
 JSAP's  current configuration.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an automatically generated usage description based upon this
 JSAP's current configuration.</dd>
</dl>
</li>
</ul>
<a name="toString--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;toString()</pre>
<div class="block">Returns an automatically generated usage description based upon this
 JSAP's  current configuration.  This returns exactly the same result
 as getUsage().</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--" title="class or interface in java.lang">toString</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an automatically generated usage description based upon this
 JSAP's current configuration.</dd>
</dl>
</li>
</ul>
<a name="getIDMap--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getIDMap</h4>
<pre>public&nbsp;<a href="../../../com/martiansoftware/jsap/IDMap.html" title="class in com.martiansoftware.jsap">IDMap</a>&nbsp;getIDMap()</pre>
<div class="block">Returns an IDMap associating long and short flags with their associated
 parameters' IDs, and allowing the listing of IDs.  This is probably only
 useful for developers creating their own DefaultSource classes.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an IDMap based upon this JSAP's current configuration.</dd>
</dl>
</li>
</ul>
<a name="getByID-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getByID</h4>
<pre>public&nbsp;<a href="../../../com/martiansoftware/jsap/Parameter.html" title="class in com.martiansoftware.jsap">Parameter</a>&nbsp;getByID(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;id)</pre>
<div class="block">Returns the requested Switch, FlaggedOption, or UnflaggedOption with the
 specified ID.  Depending upon what you intend to do with the result, it
 may be necessary to re-cast the result as a Switch, FlaggedOption, or
 UnflaggedOption as appropriate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>id</code> - the ID of the requested Switch, FlaggedOption, or
 UnflaggedOption.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the requested Switch, FlaggedOption, or UnflaggedOption, or null
 if no Parameter with the specified ID is defined in this JSAP.</dd>
</dl>
</li>
</ul>
<a name="getByLongFlag-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getByLongFlag</h4>
<pre>public&nbsp;<a href="../../../com/martiansoftware/jsap/Flagged.html" title="interface in com.martiansoftware.jsap">Flagged</a>&nbsp;getByLongFlag(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;longFlag)</pre>
<div class="block">Returns the requested Switch or FlaggedOption with the specified long
 flag. Depending upon what you intend to do with the result, it may be
 necessary to re-cast the result as a Switch or FlaggedOption as
 appropriate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>longFlag</code> - the long flag of the requested Switch or FlaggedOption.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the requested Switch or FlaggedOption, or null if no Flagged
 object with the specified long flag is defined in this JSAP.</dd>
</dl>
</li>
</ul>
<a name="getByShortFlag-java.lang.Character-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getByShortFlag</h4>
<pre>public&nbsp;<a href="../../../com/martiansoftware/jsap/Flagged.html" title="interface in com.martiansoftware.jsap">Flagged</a>&nbsp;getByShortFlag(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Character.html?is-external=true" title="class or interface in java.lang">Character</a>&nbsp;shortFlag)</pre>
<div class="block">Returns the requested Switch or FlaggedOption with the specified short
 flag. Depending upon what you intend to do with the result, it may be
 necessary to re-cast the result as a Switch or FlaggedOption as
 appropriate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>shortFlag</code> - the short flag of the requested Switch or FlaggedOption.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the requested Switch or FlaggedOption, or null if no Flagged
 object with the specified short flag is defined in this JSAP.</dd>
</dl>
</li>
</ul>
<a name="getByShortFlag-char-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getByShortFlag</h4>
<pre>public&nbsp;<a href="../../../com/martiansoftware/jsap/Flagged.html" title="interface in com.martiansoftware.jsap">Flagged</a>&nbsp;getByShortFlag(char&nbsp;shortFlag)</pre>
<div class="block">Returns the requested Switch or FlaggedOption with the specified short
 flag. Depending upon what you intend to do with the result, it may be
 necessary to re-cast the result as a Switch or FlaggedOption as
 appropriate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>shortFlag</code> - the short flag of the requested Switch or FlaggedOption.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the requested Switch or FlaggedOption, or null if no Flagged
 object with the specified short flag is defined in this JSAP.</dd>
</dl>
</li>
</ul>
<a name="getUnflaggedOptionsIterator--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getUnflaggedOptionsIterator</h4>
<pre>public&nbsp;<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util">Iterator</a>&nbsp;getUnflaggedOptionsIterator()</pre>
<div class="block">Returns an Iterator over all UnflaggedOptions currently registered with
 this JSAP.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an Iterator over all UnflaggedOptions currently registered with
 this JSAP.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true" title="class or interface in java.util"><code>Iterator</code></a></dd>
</dl>
</li>
</ul>
<a name="registerDefaultSource-com.martiansoftware.jsap.DefaultSource-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>registerDefaultSource</h4>
<pre>public&nbsp;void&nbsp;registerDefaultSource(<a href="../../../com/martiansoftware/jsap/DefaultSource.html" title="interface in com.martiansoftware.jsap">DefaultSource</a>&nbsp;ds)</pre>
<div class="block">Registers a new DefaultSource with this JSAP, at the end of the current
 DefaultSource chain, but before the defaults defined within the
 AbstractParameters themselves.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ds</code> - the DefaultSource to append to the DefaultSource chain.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/DefaultSource.html" title="interface in com.martiansoftware.jsap"><code>DefaultSource</code></a></dd>
</dl>
</li>
</ul>
<a name="unregisterDefaultSource-com.martiansoftware.jsap.DefaultSource-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>unregisterDefaultSource</h4>
<pre>public&nbsp;void&nbsp;unregisterDefaultSource(<a href="../../../com/martiansoftware/jsap/DefaultSource.html" title="interface in com.martiansoftware.jsap">DefaultSource</a>&nbsp;ds)</pre>
<div class="block">Removes the specified DefaultSource from this JSAP's DefaultSource chain.
 If this specified DefaultSource is not currently in this JSAP's
 DefaultSource chain, this method does nothing.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>ds</code> - the DefaultSource to remove from the DefaultSource chain.</dd>
</dl>
</li>
</ul>
<a name="getDefaults-com.martiansoftware.jsap.ExceptionMap-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefaults</h4>
<pre>protected&nbsp;<a href="../../../com/martiansoftware/jsap/Defaults.html" title="class in com.martiansoftware.jsap">Defaults</a>&nbsp;getDefaults(<a href="../../../com/martiansoftware/jsap/ExceptionMap.html" title="interface in com.martiansoftware.jsap">ExceptionMap</a>&nbsp;exceptionMap)</pre>
<div class="block">Returns a Defaults object representing the merged Defaults of every
 DefaultSource in the DefaultSource chain and the default values specified
 in the AbstractParameters themselves.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>exceptionMap</code> - the ExceptionMap object within which any encountered
 exceptions will be returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a Defaults object representing the Defaults of the entire JSAP.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../com/martiansoftware/jsap/DefaultSource.html#getDefaults-com.martiansoftware.jsap.IDMap-com.martiansoftware.jsap.ExceptionMap-"><code>DefaultSource.getDefaults(IDMap, ExceptionMap)</code></a></dd>
</dl>
</li>
</ul>
<a name="registerParameter-com.martiansoftware.jsap.Parameter-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>registerParameter</h4>
<pre>public&nbsp;void&nbsp;registerParameter(<a href="../../../com/martiansoftware/jsap/Parameter.html" title="class in com.martiansoftware.jsap">Parameter</a>&nbsp;param)
                       throws <a href="../../../com/martiansoftware/jsap/JSAPException.html" title="class in com.martiansoftware.jsap">JSAPException</a></pre>
<div class="block">Registers the specified Parameter (i.e., Switch, FlaggedOption,
 or UnflaggedOption) with this JSAP.

 <p>Registering an Parameter <b>locks</b> the parameter.
 Attempting to change its properties (ID, flags, etc.) while it is locked
 will result in a JSAPException.  To unlock an Parameter, it must
 be unregistered from the JSAP.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>param</code> - the Parameter to register.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../com/martiansoftware/jsap/JSAPException.html" title="class in com.martiansoftware.jsap">JSAPException</a></code> - if this Parameter cannot be added. Possible
 reasons include:
 <ul>
     <li>Another Parameter with the same ID has already been
      registered.</li>
  <li>You are attempting to register a Switch or FlaggedOption with
      neither a short nor long flag.</li>
  <li>You are attempting to register a Switch or FlaggedOption with a long
      or short flag that is already
  defined in this JSAP.</li>
  <li>You are attempting to register a second greedy UnflaggedOption</li>
 </ul></dd>
</dl>
</li>
</ul>
<a name="unregisterParameter-com.martiansoftware.jsap.Parameter-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>unregisterParameter</h4>
<pre>public&nbsp;void&nbsp;unregisterParameter(<a href="../../../com/martiansoftware/jsap/Parameter.html" title="class in com.martiansoftware.jsap">Parameter</a>&nbsp;param)</pre>
<div class="block">Unregisters the specified Parameter (i.e., Switch, FlaggedOption,
 or UnflaggedOption) from this JSAP.  Unregistering an Parameter
 also unlocks it, allowing changes to its properties (ID, flags, etc.).</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>param</code> - the Parameter to unregister from this JSAP.</dd>
</dl>
</li>
</ul>
<a name="parse-java.lang.String:A-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>parse</h4>
<pre>public&nbsp;<a href="../../../com/martiansoftware/jsap/JSAPResult.html" title="class in com.martiansoftware.jsap">JSAPResult</a>&nbsp;parse(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;args)</pre>
<div class="block">Parses the specified command line array.  If no Exception is thrown, the
 entire command line has been parsed successfully, and its results have
 been successfully instantiated.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>args</code> - An array of command line arguments to parse.  This array is
 typically provided in the application's main class' main() method.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a JSAPResult containing the resulting Objects.</dd>
</dl>
</li>
</ul>
<a name="parse-java.lang.String-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>parse</h4>
<pre>public&nbsp;<a href="../../../com/martiansoftware/jsap/JSAPResult.html" title="class in com.martiansoftware.jsap">JSAPResult</a>&nbsp;parse(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;cmdLine)</pre>
<div class="block">Parses the specified command line.  The specified command line is first
 parsed into an array, much like the operating system does for the JVM
 prior to calling your application's main class' main() method.  If no
 Exception is thrown, the entire command line has been parsed
 successfully, and its results have been successfully instantiated.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>cmdLine</code> - An array of command line arguments to parse.  This array
 is typically provided in the application's main class' main() method.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a JSAPResult containing the resulting Objects.</dd>
</dl>
</li>
</ul>
<a name="finalize--">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>finalize</h4>
<pre>public&nbsp;void&nbsp;finalize()</pre>
<div class="block">Unregisters all registered AbstractParameters, allowing them to perform
 their cleanup.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a></code>&nbsp;in class&nbsp;<code><a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!--   -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/JSAP.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../com/martiansoftware/jsap/IllegalMultipleDeclarationException.html" title="class in com.martiansoftware.jsap"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../com/martiansoftware/jsap/JSAPException.html" title="class in com.martiansoftware.jsap"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?com/martiansoftware/jsap/JSAP.html" target="_top">Frames</a></li>
<li><a href="JSAP.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p>
</body>
</html>