Added in API level 26

Redirect

abstract class Redirect
kotlin.Any
   ↳ java.lang.ProcessBuilder.Redirect

Represents a source of subprocess input or a destination of subprocess output. Each Redirect instance is one of the following:

Each of the above categories has an associated unique Type.

Summary

Nested classes

The type of a Redirect.

Public methods
open static ProcessBuilder.Redirect!
appendTo(file: File!)

Returns a redirect to append to the specified file.

open Boolean
equals(other: Any?)

Compares the specified object with this Redirect for equality.

open File!

Returns the File source or destination associated with this redirect, or null if there is no such file.

open static ProcessBuilder.Redirect!
from(file: File!)

Returns a redirect to read from the specified file.

open Int

Returns a hash code value for this Redirect.

open static ProcessBuilder.Redirect!
to(file: File!)

Returns a redirect to write to the specified file.

abstract ProcessBuilder.Redirect.Type!

Returns the type of this Redirect.

Properties
static ProcessBuilder.Redirect!

Indicates that subprocess I/O source or destination will be the same as those of the current process.

static ProcessBuilder.Redirect!

Indicates that subprocess I/O will be connected to the current Java process over a pipe.

Public methods

appendTo

Added in API level 26
open static fun appendTo(file: File!): ProcessBuilder.Redirect!

Returns a redirect to append to the specified file. Each write operation first advances the position to the end of the file and then writes the requested data. Whether the advancement of the position and the writing of the data are done in a single atomic operation is system-dependent and therefore unspecified.

It will always be true that

<code>Redirect.appendTo(file).file() == file &amp;&amp;
  Redirect.appendTo(file).type() == Redirect.Type.APPEND
  </code>
Parameters
file File!: The File for the Redirect.
Return
ProcessBuilder.Redirect! a redirect to append to the specified file
Exceptions
java.lang.NullPointerException if the specified file is null

equals

Added in API level 26
open fun equals(other: Any?): Boolean

Compares the specified object with this Redirect for equality. Returns true if and only if the two objects are identical or both objects are Redirect instances of the same type associated with non-null equal File instances.

Parameters
obj the reference object with which to compare.
Return
Boolean true if this object is the same as the obj argument; false otherwise.

file

Added in API level 26
open fun file(): File!

Returns the File source or destination associated with this redirect, or null if there is no such file.

Return
File! the file associated with this redirect, or null if there is no such file

from

Added in API level 26
open static fun from(file: File!): ProcessBuilder.Redirect!

Returns a redirect to read from the specified file.

It will always be true that

<code>Redirect.from(file).file() == file &amp;&amp;
  Redirect.from(file).type() == Redirect.Type.READ
  </code>
Parameters
file File!: The File for the Redirect.
Return
ProcessBuilder.Redirect! a redirect to read from the specified file
Exceptions
java.lang.NullPointerException if the specified file is null

hashCode

Added in API level 26
open fun hashCode(): Int

Returns a hash code value for this Redirect.

Return
Int a hash code value for this Redirect

to

Added in API level 26
open static fun to(file: File!): ProcessBuilder.Redirect!

Returns a redirect to write to the specified file. If the specified file exists when the subprocess is started, its previous contents will be discarded.

It will always be true that

<code>Redirect.to(file).file() == file &amp;&amp;
  Redirect.to(file).type() == Redirect.Type.WRITE
  </code>
Parameters
file File!: The File for the Redirect.
Return
ProcessBuilder.Redirect! a redirect to write to the specified file
Exceptions
java.lang.NullPointerException if the specified file is null

type

Added in API level 26
abstract fun type(): ProcessBuilder.Redirect.Type!

Returns the type of this Redirect.

Return
ProcessBuilder.Redirect.Type! the type of this Redirect

Properties

INHERIT

Added in API level 26
static val INHERIT: ProcessBuilder.Redirect!

Indicates that subprocess I/O source or destination will be the same as those of the current process. This is the normal behavior of most operating system command interpreters (shells).

It will always be true that

<code>Redirect.INHERIT.file() == null &amp;&amp;
  Redirect.INHERIT.type() == Redirect.Type.INHERIT
  </code>

PIPE

Added in API level 26
static val PIPE: ProcessBuilder.Redirect!

Indicates that subprocess I/O will be connected to the current Java process over a pipe. This is the default handling of subprocess standard I/O.

It will always be true that

<code>Redirect.PIPE.file() == null &amp;&amp;
  Redirect.PIPE.type() == Redirect.Type.PIPE
  </code>