Java java.lang Process fields, constructors, methods, implement or subclass

Example usage for Java java.lang Process fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.lang Process.

The text is from its open source code.

Subclass

java.lang.Process has subclasses.
Click this link to see all its subclasses.

Implementation

java.lang.Process has the following implementations.
Click this link to see all its implementation.

Constructor

Process()
Default constructor for Process.

Method

voiddestroy()
Kills the process.
ProcessdestroyForcibly()
Kills the process forcibly.
intexitValue()
Returns the exit value for the process.
ClassgetClass()
Returns the runtime class of this Object .
InputStreamgetErrorStream()
Returns the input stream connected to the error output of the process.
InputStreamgetInputStream()
Returns the input stream connected to the normal output of the process.
OutputStreamgetOutputStream()
Returns the output stream connected to the normal input of the process.
inthashCode()
Returns a hash code value for the object.
booleanisAlive()
Tests whether the process represented by this Process is alive.
StringtoString()
Returns a string representation of the object.
voidwait(long timeoutMillis)
Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
voidwait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
intwaitFor()
Causes the current thread to wait, if necessary, until the process represented by this Process object has terminated.
booleanwaitFor(long timeout, TimeUnit unit)
Causes the current thread to wait, if necessary, until the process represented by this Process object has terminated, or the specified waiting time elapses.