-
Notifications
You must be signed in to change notification settings - Fork 4
/
index-all.html
1124 lines (1124 loc) · 97.5 KB
/
index-all.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>Index (Apache Commons Exec 1.3 API)</title>
<link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (Apache Commons Exec 1.3 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="./overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="./overview-tree.html">Tree</a></li>
<li><a href="./deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="./help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="./index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="./allclasses-noframe.html">All 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>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#_A_">A</a> <a href="#_C_">C</a> <a href="#_D_">D</a> <a href="#_E_">E</a> <a href="#_F_">F</a> <a href="#_G_">G</a> <a href="#_H_">H</a> <a href="#_I_">I</a> <a href="#_J_">J</a> <a href="#_K_">K</a> <a href="#_L_">L</a> <a href="#_M_">M</a> <a href="#_O_">O</a> <a href="#_P_">P</a> <a href="#_Q_">Q</a> <a href="#_R_">R</a> <a href="#_S_">S</a> <a href="#_T_">T</a> <a href="#_V_">V</a> <a href="#_W_">W</a> <a name="_A_">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/ProcessDestroyer.html#add(java.lang.Process)">add(Process)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ProcessDestroyer.html" title="interface in org.apache.commons.exec">ProcessDestroyer</a></dt>
<dd>
<div class="block">Returns <code>true</code> if the specified
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Process.html?is-external=true" title="class or interface in java.lang"><code>Process</code></a> was
successfully added to the list of processes to be destroy.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html#add(java.lang.Process)">add(Process)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html" title="class in org.apache.commons.exec">ShutdownHookProcessDestroyer</a></dt>
<dd>
<div class="block">Returns <code>true</code> if the specified <code>Process</code> was
successfully added to the list of processes to destroy upon VM exit.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#addArgument(java.lang.String)">addArgument(String)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Add a single argument.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#addArgument(java.lang.String,%20boolean)">addArgument(String, boolean)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Add a single argument.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#addArguments(java.lang.String[])">addArguments(String[])</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Add multiple arguments.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#addArguments(java.lang.String[],%20boolean)">addArguments(String[], boolean)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Add multiple arguments.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#addArguments(java.lang.String)">addArguments(String)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Add multiple arguments.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#addArguments(java.lang.String,%20boolean)">addArguments(String, boolean)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Add multiple arguments.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Watchdog.html#addTimeoutObserver(org.apache.commons.exec.TimeoutObserver)">addTimeoutObserver(TimeoutObserver)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/Watchdog.html" title="class in org.apache.commons.exec">Watchdog</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/environment/EnvironmentUtils.html#addVariableToEnvironment(java.util.Map,%20java.lang.String)">addVariableToEnvironment(Map<String, String>, String)</a></span> - Static method in class org.apache.commons.exec.environment.<a href="./org/apache/commons/exec/environment/EnvironmentUtils.html" title="class in org.apache.commons.exec.environment">EnvironmentUtils</a></dt>
<dd>
<div class="block">Add a key/value pair to the given environment.</div>
</dd>
</dl>
<a name="_C_">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#checkException()">checkException()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">This method will rethrow the exception that was possibly caught during
the run of the process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#cleanUp()">cleanUp()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">reset the monitor flag and the process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/LogOutputStream.html#close()">close()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/LogOutputStream.html" title="class in org.apache.commons.exec">LogOutputStream</a></dt>
<dd>
<div class="block">Writes all remaining data from the buffer.</div>
</dd>
<dt><a href="./org/apache/commons/exec/launcher/CommandLauncher.html" title="interface in org.apache.commons.exec.launcher"><span class="strong">CommandLauncher</span></a> - Interface in <a href="./org/apache/commons/exec/launcher/package-summary.html">org.apache.commons.exec.launcher</a></dt>
<dd>
<div class="block">Interface to shield the caller from the various platform-dependent
implementations.</div>
</dd>
<dt><a href="./org/apache/commons/exec/launcher/CommandLauncherFactory.html" title="class in org.apache.commons.exec.launcher"><span class="strong">CommandLauncherFactory</span></a> - Class in <a href="./org/apache/commons/exec/launcher/package-summary.html">org.apache.commons.exec.launcher</a></dt>
<dd>
<div class="block">Builds a command launcher for the OS and JVM we are running under.</div>
</dd>
<dt><a href="./org/apache/commons/exec/launcher/CommandLauncherImpl.html" title="class in org.apache.commons.exec.launcher"><span class="strong">CommandLauncherImpl</span></a> - Class in <a href="./org/apache/commons/exec/launcher/package-summary.html">org.apache.commons.exec.launcher</a></dt>
<dd>
<div class="block">A command launcher for a particular JVM/OS platform.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncherImpl.html#CommandLauncherImpl()">CommandLauncherImpl()</a></span> - Constructor for class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncherImpl.html" title="class in org.apache.commons.exec.launcher">CommandLauncherImpl</a></dt>
<dd> </dd>
<dt><a href="./org/apache/commons/exec/launcher/CommandLauncherProxy.html" title="class in org.apache.commons.exec.launcher"><span class="strong">CommandLauncherProxy</span></a> - Class in <a href="./org/apache/commons/exec/launcher/package-summary.html">org.apache.commons.exec.launcher</a></dt>
<dd>
<div class="block">A command launcher that proxies another command launcher.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncherProxy.html#CommandLauncherProxy(org.apache.commons.exec.launcher.CommandLauncher)">CommandLauncherProxy(CommandLauncher)</a></span> - Constructor for class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncherProxy.html" title="class in org.apache.commons.exec.launcher">CommandLauncherProxy</a></dt>
<dd> </dd>
<dt><a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec"><span class="strong">CommandLine</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">CommandLine objects help handling command lines specifying processes to
execute.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#CommandLine(java.lang.String)">CommandLine(String)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Create a command line without any arguments.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#CommandLine(java.io.File)">CommandLine(File)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Create a command line without any arguments.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#CommandLine(org.apache.commons.exec.CommandLine)">CommandLine(CommandLine)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Copy constructor.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/DebugUtils.html#COMMONS_EXEC_DEBUG">COMMONS_EXEC_DEBUG</a></span> - Static variable in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/DebugUtils.html" title="class in org.apache.commons.exec.util">DebugUtils</a></dt>
<dd>
<div class="block">System property to determine how to dump an exception.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/DebugUtils.html#COMMONS_EXEC_LENIENT">COMMONS_EXEC_LENIENT</a></span> - Static variable in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/DebugUtils.html" title="class in org.apache.commons.exec.util">DebugUtils</a></dt>
<dd>
<div class="block">System property to determine how to handle exceptions.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/MapUtils.html#copy(java.util.Map)">copy(Map<K, V>)</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/MapUtils.html" title="class in org.apache.commons.exec.util">MapUtils</a></dt>
<dd>
<div class="block">Clones a map.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html#createProcEnvironment()">createProcEnvironment()</a></span> - Method in class org.apache.commons.exec.environment.<a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html" title="class in org.apache.commons.exec.environment">DefaultProcessingEnvironment</a></dt>
<dd>
<div class="block">Find the list of environment variables for this process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#createProcessErrorPump(java.io.InputStream,%20java.io.OutputStream)">createProcessErrorPump(InputStream, OutputStream)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Create the pump to handle error output.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#createProcessOutputPump(java.io.InputStream,%20java.io.OutputStream)">createProcessOutputPump(InputStream, OutputStream)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Create the pump to handle process output.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#createPump(java.io.InputStream,%20java.io.OutputStream)">createPump(InputStream, OutputStream)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Creates a stream pumper to copy the given input stream to the given
output stream.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#createPump(java.io.InputStream,%20java.io.OutputStream,%20boolean)">createPump(InputStream, OutputStream, boolean)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Creates a stream pumper to copy the given input stream to the given
output stream.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DaemonExecutor.html#createThread(java.lang.Runnable,%20java.lang.String)">createThread(Runnable, String)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DaemonExecutor.html" title="class in org.apache.commons.exec">DaemonExecutor</a></dt>
<dd>
<div class="block">Factory method to create a thread waiting for the result of an asynchronous execution.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#createThread(java.lang.Runnable,%20java.lang.String)">createThread(Runnable, String)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd>
<div class="block">Factory method to create a thread waiting for the result of an
asynchronous execution.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncherFactory.html#createVMLauncher()">createVMLauncher()</a></span> - Static method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncherFactory.html" title="class in org.apache.commons.exec.launcher">CommandLauncherFactory</a></dt>
<dd>
<div class="block">Factory method to create an appropriate launcher.</div>
</dd>
</dl>
<a name="_D_">
<!-- -->
</a>
<h2 class="title">D</h2>
<dl>
<dt><a href="./org/apache/commons/exec/DaemonExecutor.html" title="class in org.apache.commons.exec"><span class="strong">DaemonExecutor</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Runs daemon processes asynchronously.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DaemonExecutor.html#DaemonExecutor()">DaemonExecutor()</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/DaemonExecutor.html" title="class in org.apache.commons.exec">DaemonExecutor</a></dt>
<dd> </dd>
<dt><a href="./org/apache/commons/exec/util/DebugUtils.html" title="class in org.apache.commons.exec.util"><span class="strong">DebugUtils</span></a> - Class in <a href="./org/apache/commons/exec/util/package-summary.html">org.apache.commons.exec.util</a></dt>
<dd>
<div class="block">Provides debugging support.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/DebugUtils.html#DebugUtils()">DebugUtils()</a></span> - Constructor for class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/DebugUtils.html" title="class in org.apache.commons.exec.util">DebugUtils</a></dt>
<dd> </dd>
<dt><a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html" title="class in org.apache.commons.exec"><span class="strong">DefaultExecuteResultHandler</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">A default implementation of 'ExecuteResultHandler' used for asynchronous
process handling.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html#DefaultExecuteResultHandler()">DefaultExecuteResultHandler()</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html" title="class in org.apache.commons.exec">DefaultExecuteResultHandler</a></dt>
<dd>
<div class="block">Constructor.</div>
</dd>
<dt><a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec"><span class="strong">DefaultExecutor</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">The default class to start a subprocess.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#DefaultExecutor()">DefaultExecutor()</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd>
<div class="block">Default constructor creating a default <code>PumpStreamHandler</code>
and sets the working directory of the subprocess to the current
working directory.</div>
</dd>
<dt><a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html" title="class in org.apache.commons.exec.environment"><span class="strong">DefaultProcessingEnvironment</span></a> - Class in <a href="./org/apache/commons/exec/environment/package-summary.html">org.apache.commons.exec.environment</a></dt>
<dd>
<div class="block">Helper class to determine the environment variable
for the OS.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html#DefaultProcessingEnvironment()">DefaultProcessingEnvironment()</a></span> - Constructor for class org.apache.commons.exec.environment.<a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html" title="class in org.apache.commons.exec.environment">DefaultProcessingEnvironment</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#destroyProcess()">destroyProcess()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">Destroys the running process manually.</div>
</dd>
</dl>
<a name="_E_">
<!-- -->
</a>
<h2 class="title">E</h2>
<dl>
<dt><a href="./org/apache/commons/exec/environment/EnvironmentUtils.html" title="class in org.apache.commons.exec.environment"><span class="strong">EnvironmentUtils</span></a> - Class in <a href="./org/apache/commons/exec/environment/package-summary.html">org.apache.commons.exec.environment</a></dt>
<dd>
<div class="block">Wrapper for environment variables.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncher.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map)">exec(CommandLine, Map<String, String>)</a></span> - Method in interface org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncher.html" title="interface in org.apache.commons.exec.launcher">CommandLauncher</a></dt>
<dd>
<div class="block">Launches the given command in a new process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncher.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map,%20java.io.File)">exec(CommandLine, Map<String, String>, File)</a></span> - Method in interface org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncher.html" title="interface in org.apache.commons.exec.launcher">CommandLauncher</a></dt>
<dd>
<div class="block">Launches the given command in a new process, in the given working
directory.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncherImpl.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map)">exec(CommandLine, Map<String, String>)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncherImpl.html" title="class in org.apache.commons.exec.launcher">CommandLauncherImpl</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncherImpl.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map,%20java.io.File)">exec(CommandLine, Map<String, String>, File)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncherImpl.html" title="class in org.apache.commons.exec.launcher">CommandLauncherImpl</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncherProxy.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map)">exec(CommandLine, Map<String, String>)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncherProxy.html" title="class in org.apache.commons.exec.launcher">CommandLauncherProxy</a></dt>
<dd>
<div class="block">Launches the given command in a new process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/Java13CommandLauncher.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map,%20java.io.File)">exec(CommandLine, Map<String, String>, File)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/Java13CommandLauncher.html" title="class in org.apache.commons.exec.launcher">Java13CommandLauncher</a></dt>
<dd>
<div class="block">Launches the given command in a new process, in the given working
directory</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/OS2CommandLauncher.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map,%20java.io.File)">exec(CommandLine, Map<String, String>, File)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/OS2CommandLauncher.html" title="class in org.apache.commons.exec.launcher">OS2CommandLauncher</a></dt>
<dd>
<div class="block">Launches the given command in a new process, in the given working
directory.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/VmsCommandLauncher.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map)">exec(CommandLine, Map<String, String>)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/VmsCommandLauncher.html" title="class in org.apache.commons.exec.launcher">VmsCommandLauncher</a></dt>
<dd>
<div class="block">Launches the given command in a new process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/VmsCommandLauncher.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map,%20java.io.File)">exec(CommandLine, Map<String, String>, File)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/VmsCommandLauncher.html" title="class in org.apache.commons.exec.launcher">VmsCommandLauncher</a></dt>
<dd>
<div class="block">Launches the given command in a new process, in the given working
directory.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/WinNTCommandLauncher.html#exec(org.apache.commons.exec.CommandLine,%20java.util.Map,%20java.io.File)">exec(CommandLine, Map<String, String>, File)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/WinNTCommandLauncher.html" title="class in org.apache.commons.exec.launcher">WinNTCommandLauncher</a></dt>
<dd>
<div class="block">Launches the given command in a new process, in the given working
directory.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#execute(org.apache.commons.exec.CommandLine)">execute(CommandLine)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#execute(org.apache.commons.exec.CommandLine,%20java.util.Map)">execute(CommandLine, Map<String, String>)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#execute(org.apache.commons.exec.CommandLine,%20org.apache.commons.exec.ExecuteResultHandler)">execute(CommandLine, ExecuteResultHandler)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#execute(org.apache.commons.exec.CommandLine,%20java.util.Map,%20org.apache.commons.exec.ExecuteResultHandler)">execute(CommandLine, Map<String, String>, ExecuteResultHandler)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#execute(org.apache.commons.exec.CommandLine)">execute(CommandLine)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Methods for starting synchronous execution.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#execute(org.apache.commons.exec.CommandLine,%20java.util.Map)">execute(CommandLine, Map<String, String>)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Methods for starting synchronous execution.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#execute(org.apache.commons.exec.CommandLine,%20org.apache.commons.exec.ExecuteResultHandler)">execute(CommandLine, ExecuteResultHandler)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Methods for starting asynchronous execution.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#execute(org.apache.commons.exec.CommandLine,%20java.util.Map,%20org.apache.commons.exec.ExecuteResultHandler)">execute(CommandLine, Map<String, String>, ExecuteResultHandler)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Methods for starting asynchronous execution.</div>
</dd>
<dt><a href="./org/apache/commons/exec/ExecuteException.html" title="class in org.apache.commons.exec"><span class="strong">ExecuteException</span></a> - Exception in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">An exception indicating that the executing a subprocesses failed.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteException.html#ExecuteException(java.lang.String,%20int)">ExecuteException(String, int)</a></span> - Constructor for exception org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteException.html" title="class in org.apache.commons.exec">ExecuteException</a></dt>
<dd>
<div class="block">Construct a new exception with the specified detail message.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteException.html#ExecuteException(java.lang.String,%20int,%20java.lang.Throwable)">ExecuteException(String, int, Throwable)</a></span> - Constructor for exception org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteException.html" title="class in org.apache.commons.exec">ExecuteException</a></dt>
<dd>
<div class="block">Construct a new exception with the specified detail message and cause.</div>
</dd>
<dt><a href="./org/apache/commons/exec/ExecuteResultHandler.html" title="interface in org.apache.commons.exec"><span class="strong">ExecuteResultHandler</span></a> - Interface in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">The callback handlers for the result of asynchronous process execution.</div>
</dd>
<dt><a href="./org/apache/commons/exec/ExecuteStreamHandler.html" title="interface in org.apache.commons.exec"><span class="strong">ExecuteStreamHandler</span></a> - Interface in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Used by <code>Execute</code> to handle input and output stream of
subprocesses.</div>
</dd>
<dt><a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec"><span class="strong">ExecuteWatchdog</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Destroys a process running for too long.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#ExecuteWatchdog(long)">ExecuteWatchdog(long)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">Creates a new watchdog with a given timeout.</div>
</dd>
<dt><a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec"><span class="strong">Executor</span></a> - Interface in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">The main abstraction to start an external process.</div>
</dd>
</dl>
<a name="_F_">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/Watchdog.html#fireTimeoutOccured()">fireTimeoutOccured()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/Watchdog.html" title="class in org.apache.commons.exec">Watchdog</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/StringUtils.html#fixFileSeparatorChar(java.lang.String)">fixFileSeparatorChar(String)</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/StringUtils.html" title="class in org.apache.commons.exec.util">StringUtils</a></dt>
<dd>
<div class="block">Fixes the file separator char for the target platform
using the following replacement.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/LogOutputStream.html#flush()">flush()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/LogOutputStream.html" title="class in org.apache.commons.exec">LogOutputStream</a></dt>
<dd>
<div class="block">Flush this log stream.</div>
</dd>
</dl>
<a name="_G_">
<!-- -->
</a>
<h2 class="title">G</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#getArguments()">getArguments()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Returns the expanded and quoted command line arguments.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteException.html#getCause()">getCause()</a></span> - Method in exception org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteException.html" title="class in org.apache.commons.exec">ExecuteException</a></dt>
<dd>
<div class="block">Return the underlying cause of this exception (if any).</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#getErr()">getErr()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Get the error stream.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html#getException()">getException()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html" title="class in org.apache.commons.exec">DefaultExecuteResultHandler</a></dt>
<dd>
<div class="block">Get the <code>exception</code> causing the process execution to fail.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#getExecutable()">getExecutable()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Returns the executable.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#getExecutorThread()">getExecutorThread()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd>
<div class="block">Get the worker thread being used for asynchronous execution.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html#getExitValue()">getExitValue()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html" title="class in org.apache.commons.exec">DefaultExecuteResultHandler</a></dt>
<dd>
<div class="block">Get the <code>exitValue</code> of the process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteException.html#getExitValue()">getExitValue()</a></span> - Method in exception org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteException.html" title="class in org.apache.commons.exec">ExecuteException</a></dt>
<dd>
<div class="block">Gets the exit value returned by the failed process</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/LogOutputStream.html#getMessageLevel()">getMessageLevel()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/LogOutputStream.html" title="class in org.apache.commons.exec">LogOutputStream</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#getOut()">getOut()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Get the output stream.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html#getProcEnvCommand()">getProcEnvCommand()</a></span> - Method in class org.apache.commons.exec.environment.<a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html" title="class in org.apache.commons.exec.environment">DefaultProcessingEnvironment</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>No longer needed</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html#getProcEnvironment()">getProcEnvironment()</a></span> - Method in class org.apache.commons.exec.environment.<a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html" title="class in org.apache.commons.exec.environment">DefaultProcessingEnvironment</a></dt>
<dd>
<div class="block">Find the list of environment variables for this process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/environment/EnvironmentUtils.html#getProcEnvironment()">getProcEnvironment()</a></span> - Static method in class org.apache.commons.exec.environment.<a href="./org/apache/commons/exec/environment/EnvironmentUtils.html" title="class in org.apache.commons.exec.environment">EnvironmentUtils</a></dt>
<dd>
<div class="block">Find the list of environment variables for this process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#getProcessDestroyer()">getProcessDestroyer()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#getProcessDestroyer()">getProcessDestroyer()</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Set the handler for cleanup of started processes if the main process
is going to terminate.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#getStreamHandler()">getStreamHandler()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#getStreamHandler()">getStreamHandler()</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Get the StreamHandler used for providing input and
retrieving the output.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#getSubstitutionMap()">getSubstitutionMap()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#getWatchdog()">getWatchdog()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#getWatchdog()">getWatchdog()</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Get the watchdog used to kill of processes running,
typically, too long time.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#getWorkingDirectory()">getWorkingDirectory()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#getWorkingDirectory()">getWorkingDirectory()</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Get the working directory of the created process.</div>
</dd>
</dl>
<a name="_H_">
<!-- -->
</a>
<h2 class="title">H</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/DebugUtils.html#handleException(java.lang.String,%20java.lang.Exception)">handleException(String, Exception)</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/DebugUtils.html" title="class in org.apache.commons.exec.util">DebugUtils</a></dt>
<dd>
<div class="block">Handles an exception based on the system properties.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html#hasResult()">hasResult()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html" title="class in org.apache.commons.exec">DefaultExecuteResultHandler</a></dt>
<dd>
<div class="block">Has the process exited and a result is available, i.e.</div>
</dd>
</dl>
<a name="_I_">
<!-- -->
</a>
<h2 class="title">I</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#INFINITE_TIMEOUT">INFINITE_TIMEOUT</a></span> - Static variable in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">The marker for an infinite timeout</div>
</dd>
<dt><a href="./org/apache/commons/exec/InputStreamPumper.html" title="class in org.apache.commons.exec"><span class="strong">InputStreamPumper</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Copies all data from an System.input stream to an output stream of the executed process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/InputStreamPumper.html#InputStreamPumper(java.io.InputStream,%20java.io.OutputStream)">InputStreamPumper(InputStream, OutputStream)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/InputStreamPumper.html" title="class in org.apache.commons.exec">InputStreamPumper</a></dt>
<dd>
<div class="block">Create a new stream pumper.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#INVALID_EXITVALUE">INVALID_EXITVALUE</a></span> - Static variable in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Invalid exit code.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html#isAddedAsShutdownHook()">isAddedAsShutdownHook()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html" title="class in org.apache.commons.exec">ShutdownHookProcessDestroyer</a></dt>
<dd>
<div class="block">Returns whether or not the ProcessDestroyer is registered as as shutdown
hook</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isArch(java.lang.String)">isArch(String)</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd>
<div class="block">Determines if the OS on which Ant is executing matches the given OS
architecture.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/DebugUtils.html#isDebugEnabled()">isDebugEnabled()</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/DebugUtils.html" title="class in org.apache.commons.exec.util">DebugUtils</a></dt>
<dd>
<div class="block">Determines if debugging is enabled based on the
system property "COMMONS_EXEC_DEBUG".</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#isFailure(int)">isFailure(int)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#isFailure(int)">isFailure(int)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Checks whether <code>exitValue</code> signals a failure.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncher.html#isFailure(int)">isFailure(int)</a></span> - Method in interface org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncher.html" title="interface in org.apache.commons.exec.launcher">CommandLauncher</a></dt>
<dd>
<div class="block">Checks whether <code>exitValue</code> signals a failure on the current
system (OS specific).</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/CommandLauncherImpl.html#isFailure(int)">isFailure(int)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/CommandLauncherImpl.html" title="class in org.apache.commons.exec.launcher">CommandLauncherImpl</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/VmsCommandLauncher.html#isFailure(int)">isFailure(int)</a></span> - Method in class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/VmsCommandLauncher.html" title="class in org.apache.commons.exec.launcher">VmsCommandLauncher</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyDOS()">isFamilyDOS()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyMac()">isFamilyMac()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyNetware()">isFamilyNetware()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyOpenVms()">isFamilyOpenVms()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyOS2()">isFamilyOS2()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyOS400()">isFamilyOS400()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyTandem()">isFamilyTandem()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyUnix()">isFamilyUnix()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyWin9x()">isFamilyWin9x()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyWindows()">isFamilyWindows()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isFamilyZOS()">isFamilyZOS()</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#isFile()">isFile()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Was a file being used to set the executable?</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/StreamPumper.html#isFinished()">isFinished()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/StreamPumper.html" title="class in org.apache.commons.exec">StreamPumper</a></dt>
<dd>
<div class="block">Tells whether the end of the stream has been reached.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/DebugUtils.html#isLenientEnabled()">isLenientEnabled()</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/DebugUtils.html" title="class in org.apache.commons.exec.util">DebugUtils</a></dt>
<dd>
<div class="block">Determines if lenient mode is enabled.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isName(java.lang.String)">isName(String)</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd>
<div class="block">Determines if the OS on which Ant is executing matches the given OS name.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isOs(java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String)">isOs(String, String, String, String)</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd>
<div class="block">Determines if the OS on which Ant is executing matches the given OS
family, name, architecture and version</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/StringUtils.html#isQuoted(java.lang.String)">isQuoted(String)</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/StringUtils.html" title="class in org.apache.commons.exec.util">StringUtils</a></dt>
<dd>
<div class="block">Determines if this is a quoted argument - either single or
double quoted.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/OS.html#isVersion(java.lang.String)">isVersion(String)</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec">OS</a></dt>
<dd>
<div class="block">Determines if the OS on which Ant is executing matches the given OS
version.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#isWatching()">isWatching()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">Indicates whether or not the watchdog is still monitoring the process.</div>
</dd>
</dl>
<a name="_J_">
<!-- -->
</a>
<h2 class="title">J</h2>
<dl>
<dt><a href="./org/apache/commons/exec/launcher/Java13CommandLauncher.html" title="class in org.apache.commons.exec.launcher"><span class="strong">Java13CommandLauncher</span></a> - Class in <a href="./org/apache/commons/exec/launcher/package-summary.html">org.apache.commons.exec.launcher</a></dt>
<dd>
<div class="block">A command launcher for JDK/JRE 1.3 (and higher).</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/Java13CommandLauncher.html#Java13CommandLauncher()">Java13CommandLauncher()</a></span> - Constructor for class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/Java13CommandLauncher.html" title="class in org.apache.commons.exec.launcher">Java13CommandLauncher</a></dt>
<dd>
<div class="block">Constructor</div>
</dd>
</dl>
<a name="_K_">
<!-- -->
</a>
<h2 class="title">K</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#killedProcess()">killedProcess()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">Indicates whether the last process run was killed.</div>
</dd>
</dl>
<a name="_L_">
<!-- -->
</a>
<h2 class="title">L</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#launch(org.apache.commons.exec.CommandLine,%20java.util.Map,%20java.io.File)">launch(CommandLine, Map<String, String>, File)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd>
<div class="block">Creates a process that runs a command.</div>
</dd>
<dt><a href="./org/apache/commons/exec/LogOutputStream.html" title="class in org.apache.commons.exec"><span class="strong">LogOutputStream</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Base class to connect a logging system to the output and/or
error stream of then external process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/LogOutputStream.html#LogOutputStream()">LogOutputStream()</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/LogOutputStream.html" title="class in org.apache.commons.exec">LogOutputStream</a></dt>
<dd>
<div class="block">Creates a new instance of this class.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/LogOutputStream.html#LogOutputStream(int)">LogOutputStream(int)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/LogOutputStream.html" title="class in org.apache.commons.exec">LogOutputStream</a></dt>
<dd>
<div class="block">Creates a new instance of this class.</div>
</dd>
</dl>
<a name="_M_">
<!-- -->
</a>
<h2 class="title">M</h2>
<dl>
<dt><a href="./org/apache/commons/exec/util/MapUtils.html" title="class in org.apache.commons.exec.util"><span class="strong">MapUtils</span></a> - Class in <a href="./org/apache/commons/exec/util/package-summary.html">org.apache.commons.exec.util</a></dt>
<dd>
<div class="block">Helper classes to manipulate maps to pass substition map to the CommandLine.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/MapUtils.html#MapUtils()">MapUtils()</a></span> - Constructor for class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/MapUtils.html" title="class in org.apache.commons.exec.util">MapUtils</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/MapUtils.html#merge(java.util.Map,%20java.util.Map)">merge(Map<K, V>, Map<K, V>)</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/MapUtils.html" title="class in org.apache.commons.exec.util">MapUtils</a></dt>
<dd>
<div class="block">Clones the lhs map and add all things from the rhs map.</div>
</dd>
</dl>
<a name="_O_">
<!-- -->
</a>
<h2 class="title">O</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html#onProcessComplete(int)">onProcessComplete(int)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html" title="class in org.apache.commons.exec">DefaultExecuteResultHandler</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteResultHandler.html#onProcessComplete(int)">onProcessComplete(int)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteResultHandler.html" title="interface in org.apache.commons.exec">ExecuteResultHandler</a></dt>
<dd>
<div class="block">The asynchronous execution completed.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html#onProcessFailed(org.apache.commons.exec.ExecuteException)">onProcessFailed(ExecuteException)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecuteResultHandler.html" title="class in org.apache.commons.exec">DefaultExecuteResultHandler</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteResultHandler.html#onProcessFailed(org.apache.commons.exec.ExecuteException)">onProcessFailed(ExecuteException)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteResultHandler.html" title="interface in org.apache.commons.exec">ExecuteResultHandler</a></dt>
<dd>
<div class="block">The asynchronous execution failed.</div>
</dd>
<dt><a href="./org/apache/commons/exec/environment/OpenVmsProcessingEnvironment.html" title="class in org.apache.commons.exec.environment"><span class="strong">OpenVmsProcessingEnvironment</span></a> - Class in <a href="./org/apache/commons/exec/environment/package-summary.html">org.apache.commons.exec.environment</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>No longer needed</i></div>
</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/environment/OpenVmsProcessingEnvironment.html#OpenVmsProcessingEnvironment()">OpenVmsProcessingEnvironment()</a></span> - Constructor for class org.apache.commons.exec.environment.<a href="./org/apache/commons/exec/environment/OpenVmsProcessingEnvironment.html" title="class in org.apache.commons.exec.environment">OpenVmsProcessingEnvironment</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span></div>
</dd>
<dt><a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a> - package org.apache.commons.exec</dt>
<dd> </dd>
<dt><a href="./org/apache/commons/exec/environment/package-summary.html">org.apache.commons.exec.environment</a> - package org.apache.commons.exec.environment</dt>
<dd> </dd>
<dt><a href="./org/apache/commons/exec/launcher/package-summary.html">org.apache.commons.exec.launcher</a> - package org.apache.commons.exec.launcher</dt>
<dd> </dd>
<dt><a href="./org/apache/commons/exec/util/package-summary.html">org.apache.commons.exec.util</a> - package org.apache.commons.exec.util</dt>
<dd> </dd>
<dt><a href="./org/apache/commons/exec/OS.html" title="class in org.apache.commons.exec"><span class="strong">OS</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Condition that tests the OS type.</div>
</dd>
<dt><a href="./org/apache/commons/exec/launcher/OS2CommandLauncher.html" title="class in org.apache.commons.exec.launcher"><span class="strong">OS2CommandLauncher</span></a> - Class in <a href="./org/apache/commons/exec/launcher/package-summary.html">org.apache.commons.exec.launcher</a></dt>
<dd>
<div class="block">A command launcher for OS/2 that uses 'cmd.exe' when launching commands in
directories other than the current working directory.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/launcher/OS2CommandLauncher.html#OS2CommandLauncher(org.apache.commons.exec.launcher.CommandLauncher)">OS2CommandLauncher(CommandLauncher)</a></span> - Constructor for class org.apache.commons.exec.launcher.<a href="./org/apache/commons/exec/launcher/OS2CommandLauncher.html" title="class in org.apache.commons.exec.launcher">OS2CommandLauncher</a></dt>
<dd> </dd>
</dl>
<a name="_P_">
<!-- -->
</a>
<h2 class="title">P</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#parse(java.lang.String)">parse(String)</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Create a command line from a string.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#parse(java.lang.String,%20java.util.Map)">parse(String, Map<String, ?>)</a></span> - Static method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Create a command line from a string.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/MapUtils.html#prefix(java.util.Map,%20java.lang.String)">prefix(Map<K, V>, String)</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/MapUtils.html" title="class in org.apache.commons.exec.util">MapUtils</a></dt>
<dd>
<div class="block">Clones a map and prefixes the keys in the clone, e.g.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html#procEnvironment">procEnvironment</a></span> - Variable in class org.apache.commons.exec.environment.<a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html" title="class in org.apache.commons.exec.environment">DefaultProcessingEnvironment</a></dt>
<dd>
<div class="block">the environment variables of the process</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/LogOutputStream.html#processBuffer()">processBuffer()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/LogOutputStream.html" title="class in org.apache.commons.exec">LogOutputStream</a></dt>
<dd>
<div class="block">Converts the buffer to a string and sends it to <code>processLine</code>.</div>
</dd>
<dt><a href="./org/apache/commons/exec/ProcessDestroyer.html" title="interface in org.apache.commons.exec"><span class="strong">ProcessDestroyer</span></a> - Interface in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Destroys all registered <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Process.html?is-external=true" title="class or interface in java.lang"><code>Process</code></a> after a certain event,
typically when the VM exits</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/LogOutputStream.html#processLine(java.lang.String)">processLine(String)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/LogOutputStream.html" title="class in org.apache.commons.exec">LogOutputStream</a></dt>
<dd>
<div class="block">Logs a line to the log system of the user.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/LogOutputStream.html#processLine(java.lang.String,%20int)">processLine(String, int)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/LogOutputStream.html" title="class in org.apache.commons.exec">LogOutputStream</a></dt>
<dd>
<div class="block">Logs a line to the log system of the user.</div>
</dd>
<dt><a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec"><span class="strong">PumpStreamHandler</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Copies standard output and error of sub-processes to standard output and error
of the parent process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#PumpStreamHandler()">PumpStreamHandler()</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Construct a new <CODE>PumpStreamHandler</CODE>.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#PumpStreamHandler(java.io.OutputStream)">PumpStreamHandler(OutputStream)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Construct a new <CODE>PumpStreamHandler</CODE>.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#PumpStreamHandler(java.io.OutputStream,%20java.io.OutputStream)">PumpStreamHandler(OutputStream, OutputStream)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Construct a new <CODE>PumpStreamHandler</CODE>.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#PumpStreamHandler(java.io.OutputStream,%20java.io.OutputStream,%20java.io.InputStream)">PumpStreamHandler(OutputStream, OutputStream, InputStream)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Construct a new <CODE>PumpStreamHandler</CODE>.</div>
</dd>
</dl>
<a name="_Q_">
<!-- -->
</a>
<h2 class="title">Q</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/StringUtils.html#quoteArgument(java.lang.String)">quoteArgument(String)</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/StringUtils.html" title="class in org.apache.commons.exec.util">StringUtils</a></dt>
<dd>
<div class="block">Put quotes around the given String if necessary.</div>
</dd>
</dl>
<a name="_R_">
<!-- -->
</a>
<h2 class="title">R</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/ProcessDestroyer.html#remove(java.lang.Process)">remove(Process)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ProcessDestroyer.html" title="interface in org.apache.commons.exec">ProcessDestroyer</a></dt>
<dd>
<div class="block">Returns <code>true</code> if the specified
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Process.html?is-external=true" title="class or interface in java.lang"><code>Process</code></a> was
successfully removed from the list of processes to be destroy.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html#remove(java.lang.Process)">remove(Process)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html" title="class in org.apache.commons.exec">ShutdownHookProcessDestroyer</a></dt>
<dd>
<div class="block">Returns <code>true</code> if the specified <code>Process</code> was
successfully removed from the list of processes to destroy upon VM exit.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Watchdog.html#removeTimeoutObserver(org.apache.commons.exec.TimeoutObserver)">removeTimeoutObserver(TimeoutObserver)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/Watchdog.html" title="class in org.apache.commons.exec">Watchdog</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/InputStreamPumper.html#run()">run()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/InputStreamPumper.html" title="class in org.apache.commons.exec">InputStreamPumper</a></dt>
<dd>
<div class="block">Copies data from the input stream to the output stream.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html#run()">run()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html" title="class in org.apache.commons.exec">ShutdownHookProcessDestroyer</a></dt>
<dd>
<div class="block">Invoked by the VM when it is exiting.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/StreamPumper.html#run()">run()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/StreamPumper.html" title="class in org.apache.commons.exec">StreamPumper</a></dt>
<dd>
<div class="block">Copies data from the input stream to the output stream.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Watchdog.html#run()">run()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/Watchdog.html" title="class in org.apache.commons.exec">Watchdog</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html#runProcEnvCommand()">runProcEnvCommand()</a></span> - Method in class org.apache.commons.exec.environment.<a href="./org/apache/commons/exec/environment/DefaultProcessingEnvironment.html" title="class in org.apache.commons.exec.environment">DefaultProcessingEnvironment</a></dt>
<dd>
<div class="block"><span class="strong">Deprecated.</span>
<div class="block"><i>No longer needed</i></div>
</div>
</dd>
</dl>
<a name="_S_">
<!-- -->
</a>
<h2 class="title">S</h2>
<dl>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#setExitValue(int)">setExitValue(int)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#setExitValue(int)">setExitValue(int)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Define the <code>exitValue</code> of the process to be considered
successful.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#setExitValues(int[])">setExitValues(int[])</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#setExitValues(int[])">setExitValues(int[])</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Define a list of <code>exitValue</code> of the process to be considered
successful.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#setProcessDestroyer(org.apache.commons.exec.ProcessDestroyer)">setProcessDestroyer(ProcessDestroyer)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#setProcessDestroyer(org.apache.commons.exec.ProcessDestroyer)">setProcessDestroyer(ProcessDestroyer)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Get the handler for cleanup of started processes if the main process
is going to terminate.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteStreamHandler.html#setProcessErrorStream(java.io.InputStream)">setProcessErrorStream(InputStream)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteStreamHandler.html" title="interface in org.apache.commons.exec">ExecuteStreamHandler</a></dt>
<dd>
<div class="block">Install a handler for the error stream of the subprocess.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#setProcessErrorStream(java.io.InputStream)">setProcessErrorStream(InputStream)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Set the <CODE>InputStream</CODE> from which to read the standard error
of the process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteStreamHandler.html#setProcessInputStream(java.io.OutputStream)">setProcessInputStream(OutputStream)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteStreamHandler.html" title="interface in org.apache.commons.exec">ExecuteStreamHandler</a></dt>
<dd>
<div class="block">Install a handler for the input stream of the subprocess.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#setProcessInputStream(java.io.OutputStream)">setProcessInputStream(OutputStream)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Set the <CODE>OutputStream</CODE> by means of which input can be sent
to the process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteStreamHandler.html#setProcessOutputStream(java.io.InputStream)">setProcessOutputStream(InputStream)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteStreamHandler.html" title="interface in org.apache.commons.exec">ExecuteStreamHandler</a></dt>
<dd>
<div class="block">Install a handler for the output stream of the subprocess.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#setProcessOutputStream(java.io.InputStream)">setProcessOutputStream(InputStream)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Set the <CODE>InputStream</CODE> from which to read the standard output
of the process.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#setStopTimeout(long)">setStopTimeout(long)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Set maximum time to wait until output streams are exchausted
when <a href="./org/apache/commons/exec/PumpStreamHandler.html#stop()"><code>PumpStreamHandler.stop()</code></a> was called.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#setStreamHandler(org.apache.commons.exec.ExecuteStreamHandler)">setStreamHandler(ExecuteStreamHandler)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#setStreamHandler(org.apache.commons.exec.ExecuteStreamHandler)">setStreamHandler(ExecuteStreamHandler)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Set a custom the StreamHandler used for providing
input and retrieving the output.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/CommandLine.html#setSubstitutionMap(java.util.Map)">setSubstitutionMap(Map<String, ?>)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/CommandLine.html" title="class in org.apache.commons.exec">CommandLine</a></dt>
<dd>
<div class="block">Set the substitutionMap to expand variables in the
command line.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#setWatchdog(org.apache.commons.exec.ExecuteWatchdog)">setWatchdog(ExecuteWatchdog)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#setWatchdog(org.apache.commons.exec.ExecuteWatchdog)">setWatchdog(ExecuteWatchdog)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Set the watchdog used to kill of processes running,
typically, too long time.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/DefaultExecutor.html#setWorkingDirectory(java.io.File)">setWorkingDirectory(File)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/DefaultExecutor.html" title="class in org.apache.commons.exec">DefaultExecutor</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Executor.html#setWorkingDirectory(java.io.File)">setWorkingDirectory(File)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/Executor.html" title="interface in org.apache.commons.exec">Executor</a></dt>
<dd>
<div class="block">Set the working directory of the created process.</div>
</dd>
<dt><a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html" title="class in org.apache.commons.exec"><span class="strong">ShutdownHookProcessDestroyer</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Destroys all registered <code>Process</code>es when the VM exits.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html#ShutdownHookProcessDestroyer()">ShutdownHookProcessDestroyer()</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html" title="class in org.apache.commons.exec">ShutdownHookProcessDestroyer</a></dt>
<dd>
<div class="block">Constructs a <code>ProcessDestroyer</code> and obtains
<code>Runtime.addShutdownHook()</code> and
<code>Runtime.removeShutdownHook()</code> through reflection.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ProcessDestroyer.html#size()">size()</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ProcessDestroyer.html" title="interface in org.apache.commons.exec">ProcessDestroyer</a></dt>
<dd>
<div class="block">Returns the number of registered processes.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html#size()">size()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ShutdownHookProcessDestroyer.html" title="class in org.apache.commons.exec">ShutdownHookProcessDestroyer</a></dt>
<dd>
<div class="block">Returns the number of registered processes.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/InputStreamPumper.html#SLEEPING_TIME">SLEEPING_TIME</a></span> - Static variable in class org.apache.commons.exec.<a href="./org/apache/commons/exec/InputStreamPumper.html" title="class in org.apache.commons.exec">InputStreamPumper</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/StringUtils.html#split(java.lang.String,%20java.lang.String)">split(String, String)</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/StringUtils.html" title="class in org.apache.commons.exec.util">StringUtils</a></dt>
<dd>
<div class="block">Split a string into an array of strings based
on a separator.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteStreamHandler.html#start()">start()</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteStreamHandler.html" title="interface in org.apache.commons.exec">ExecuteStreamHandler</a></dt>
<dd>
<div class="block">Start handling of the streams.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#start(java.lang.Process)">start(Process)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">Watches the given process and terminates it, if it runs for too long.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#start()">start()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Start the <CODE>Thread</CODE>s.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Watchdog.html#start()">start()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/Watchdog.html" title="class in org.apache.commons.exec">Watchdog</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteStreamHandler.html#stop()">stop()</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteStreamHandler.html" title="interface in org.apache.commons.exec">ExecuteStreamHandler</a></dt>
<dd>
<div class="block">Stop handling of the streams - will not be restarted.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#stop()">stop()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">Stops the watcher.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#stop()">stop()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Stop pumping the streams.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/Watchdog.html#stop()">stop()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/Watchdog.html" title="class in org.apache.commons.exec">Watchdog</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/InputStreamPumper.html#stopProcessing()">stopProcessing()</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/InputStreamPumper.html" title="class in org.apache.commons.exec">InputStreamPumper</a></dt>
<dd> </dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/PumpStreamHandler.html#stopThread(java.lang.Thread,%20long)">stopThread(Thread, long)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/PumpStreamHandler.html" title="class in org.apache.commons.exec">PumpStreamHandler</a></dt>
<dd>
<div class="block">Stopping a pumper thread.</div>
</dd>
<dt><a href="./org/apache/commons/exec/StreamPumper.html" title="class in org.apache.commons.exec"><span class="strong">StreamPumper</span></a> - Class in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Copies all data from an input stream to an output stream.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/StreamPumper.html#StreamPumper(java.io.InputStream,%20java.io.OutputStream,%20boolean)">StreamPumper(InputStream, OutputStream, boolean)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/StreamPumper.html" title="class in org.apache.commons.exec">StreamPumper</a></dt>
<dd>
<div class="block">Create a new stream pumper.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/StreamPumper.html#StreamPumper(java.io.InputStream,%20java.io.OutputStream,%20boolean,%20int)">StreamPumper(InputStream, OutputStream, boolean, int)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/StreamPumper.html" title="class in org.apache.commons.exec">StreamPumper</a></dt>
<dd>
<div class="block">Create a new stream pumper.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/StreamPumper.html#StreamPumper(java.io.InputStream,%20java.io.OutputStream)">StreamPumper(InputStream, OutputStream)</a></span> - Constructor for class org.apache.commons.exec.<a href="./org/apache/commons/exec/StreamPumper.html" title="class in org.apache.commons.exec">StreamPumper</a></dt>
<dd>
<div class="block">Create a new stream pumper.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/StringUtils.html#stringSubstitution(java.lang.String,%20java.util.Map,%20boolean)">stringSubstitution(String, Map<? super String, ?>, boolean)</a></span> - Static method in class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/StringUtils.html" title="class in org.apache.commons.exec.util">StringUtils</a></dt>
<dd>
<div class="block">Perform a series of substitutions.</div>
</dd>
<dt><a href="./org/apache/commons/exec/util/StringUtils.html" title="class in org.apache.commons.exec.util"><span class="strong">StringUtils</span></a> - Class in <a href="./org/apache/commons/exec/util/package-summary.html">org.apache.commons.exec.util</a></dt>
<dd>
<div class="block">Supplement of commons-lang, the stringSubstitution() was in a simpler
implementation available in an older commons-lang implementation.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/util/StringUtils.html#StringUtils()">StringUtils()</a></span> - Constructor for class org.apache.commons.exec.util.<a href="./org/apache/commons/exec/util/StringUtils.html" title="class in org.apache.commons.exec.util">StringUtils</a></dt>
<dd> </dd>
</dl>
<a name="_T_">
<!-- -->
</a>
<h2 class="title">T</h2>
<dl>
<dt><a href="./org/apache/commons/exec/TimeoutObserver.html" title="interface in org.apache.commons.exec"><span class="strong">TimeoutObserver</span></a> - Interface in <a href="./org/apache/commons/exec/package-summary.html">org.apache.commons.exec</a></dt>
<dd>
<div class="block">Interface for classes that want to be notified by Watchdog.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/ExecuteWatchdog.html#timeoutOccured(org.apache.commons.exec.Watchdog)">timeoutOccured(Watchdog)</a></span> - Method in class org.apache.commons.exec.<a href="./org/apache/commons/exec/ExecuteWatchdog.html" title="class in org.apache.commons.exec">ExecuteWatchdog</a></dt>
<dd>
<div class="block">Called after watchdog has finished.</div>
</dd>
<dt><span class="strong"><a href="./org/apache/commons/exec/TimeoutObserver.html#timeoutOccured(org.apache.commons.exec.Watchdog)">timeoutOccured(Watchdog)</a></span> - Method in interface org.apache.commons.exec.<a href="./org/apache/commons/exec/TimeoutObserver.html" title="interface in org.apache.commons.exec">TimeoutObserver</a></dt>