ProcessBuilder.Redirect.Type
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
.
Summary
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 | |
---|---|
Enum values
APPEND
public static final ProcessBuilder.Redirect.Type APPEND
The type of redirects returned from
Redirect.appendTo(File)
.
INHERIT
public static final ProcessBuilder.Redirect.Type INHERIT
The type of Redirect.INHERIT
.
PIPE
public static final ProcessBuilder.Redirect.Type PIPE
The type of Redirect.PIPE
.
READ
public static final ProcessBuilder.Redirect.Type READ
The type of redirects returned from
Redirect.from(File)
.
WRITE
public static final ProcessBuilder.Redirect.Type WRITE
The type of redirects returned from
Redirect.to(File)
.
Public methods
valueOf
public static ProcessBuilder.Redirect.Type valueOf (String name)
Parameters | |
---|---|
name |
String |
Returns | |
---|---|
ProcessBuilder.Redirect.Type |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.