# Print output for @column tags ?>
public
static
final
enum
ProcessBuilder.Redirect.Type
extends Enum<ProcessBuilder.Redirect.Type>
| java.lang.Object | ||
| ↳ | java.lang.Enum<java.lang.ProcessBuilder.Redirect.Type> | |
| ↳ | java.lang.ProcessBuilder.Redirect.Type | |
The type of a Redirect.
Enum values | |
|---|---|
ProcessBuilder.Redirect.Type |
APPEND
The type of redirects returned from
|
ProcessBuilder.Redirect.Type |
INHERIT
The type of |
ProcessBuilder.Redirect.Type |
PIPE
The type of |
ProcessBuilder.Redirect.Type |
READ
The type of redirects returned from
|
ProcessBuilder.Redirect.Type |
WRITE
The type of redirects returned from
|
Public methods | |
|---|---|
static
ProcessBuilder.Redirect.Type
|
valueOf(String name)
|
static
final
Type[]
|
values()
|
Inherited methods | |
|---|---|
public static final ProcessBuilder.Redirect.Type APPEND
The type of redirects returned from
Redirect.appendTo(File).
public static final ProcessBuilder.Redirect.Type READ
The type of redirects returned from
Redirect.from(File).
public static final ProcessBuilder.Redirect.Type WRITE
The type of redirects returned from
Redirect.to(File).
public static ProcessBuilder.Redirect.Type valueOf (String name)
| Parameters | |
|---|---|
name |
String |
| Returns | |
|---|---|
ProcessBuilder.Redirect.Type |
|