public class Console extends NetObject
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Console
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Console, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
|
static java.lang.String |
assemblyShortName
Assembly name: System.Console
|
static java.lang.String |
className
Qualified class name: System.Console
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
Console() |
Console(java.lang.Object instance)
Internal constructor.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
Beep() |
static void |
Beep(int frequency,
int duration) |
static Console |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into Console, a cast assert is made to check if types are compatible. |
static void |
Clear() |
static ConsoleColor |
getBackgroundColor() |
static int |
getBufferHeight() |
static int |
getBufferWidth() |
static boolean |
getCapsLock() |
static int |
getCursorLeft() |
static int |
getCursorSize() |
static int |
getCursorTop() |
static boolean |
getCursorVisible() |
static TextWriter |
getError() |
static ConsoleColor |
getForegroundColor() |
static TextReader |
getIn() |
static Encoding |
getInputEncoding() |
static boolean |
getIsErrorRedirected() |
static boolean |
getIsInputRedirected() |
static boolean |
getIsOutputRedirected() |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
static boolean |
getKeyAvailable() |
static int |
getLargestWindowHeight() |
static int |
getLargestWindowWidth() |
static boolean |
getNumberLock() |
static TextWriter |
getOut() |
static Encoding |
getOutputEncoding() |
static java.lang.String |
getTitle() |
static boolean |
getTreatControlCAsInput() |
static int |
getWindowHeight() |
static int |
getWindowLeft() |
static int |
getWindowTop() |
static int |
getWindowWidth() |
static void |
MoveBufferArea(int sourceLeft,
int sourceTop,
int sourceWidth,
int sourceHeight,
int targetLeft,
int targetTop) |
static void |
MoveBufferArea(int sourceLeft,
int sourceTop,
int sourceWidth,
int sourceHeight,
int targetLeft,
int targetTop,
char sourceChar,
ConsoleColor sourceForeColor,
ConsoleColor sourceBackColor) |
static Stream |
OpenStandardError() |
static Stream |
OpenStandardError(int bufferSize) |
static Stream |
OpenStandardInput() |
static Stream |
OpenStandardInput(int bufferSize) |
static Stream |
OpenStandardOutput() |
static Stream |
OpenStandardOutput(int bufferSize) |
static int |
Read() |
static ConsoleKeyInfo |
ReadKey() |
static ConsoleKeyInfo |
ReadKey(boolean intercept) |
static java.lang.String |
ReadLine() |
static void |
ResetColor() |
static void |
setBackgroundColor(ConsoleColor BackgroundColor) |
static void |
setBufferHeight(int BufferHeight) |
static void |
SetBufferSize(int width,
int height) |
static void |
setBufferWidth(int BufferWidth) |
static void |
setCursorLeft(int CursorLeft) |
static void |
SetCursorPosition(int left,
int top) |
static void |
setCursorSize(int CursorSize) |
static void |
setCursorTop(int CursorTop) |
static void |
setCursorVisible(boolean CursorVisible) |
static void |
SetError(TextWriter newError) |
static void |
setForegroundColor(ConsoleColor ForegroundColor) |
static void |
SetIn(TextReader newIn) |
static void |
setInputEncoding(Encoding InputEncoding) |
void |
setJCOInstance(JCObject instance) |
static void |
SetOut(TextWriter newOut) |
static void |
setOutputEncoding(Encoding OutputEncoding) |
static void |
setTitle(java.lang.String Title) |
static void |
setTreatControlCAsInput(boolean TreatControlCAsInput) |
static void |
setWindowHeight(int WindowHeight) |
static void |
setWindowLeft(int WindowLeft) |
static void |
SetWindowPosition(int left,
int top) |
static void |
SetWindowSize(int width,
int height) |
static void |
setWindowTop(int WindowTop) |
static void |
setWindowWidth(int WindowWidth) |
static void |
Write(boolean value) |
static void |
Write(char value) |
static void |
Write(char[] buffer) |
static void |
Write(char[] buffer,
int index,
int count) |
static void |
Write(Decimal value) |
static void |
Write(double value) |
static void |
Write(int value) |
static void |
Write(JCORefOut dupParam0) |
static void |
Write(JCORefOut dupParam0,
int dupParam1,
int dupParam2) |
static void |
Write(long value) |
static void |
Write(NetObject value) |
static void |
Write(Single value) |
static void |
Write(java.lang.String value) |
static void |
Write(java.lang.String format,
NetObject... arg) |
static void |
Write(java.lang.String format,
NetObject arg0) |
static void |
Write(java.lang.String format,
NetObject arg0,
NetObject arg1) |
static void |
Write(java.lang.String format,
NetObject arg0,
NetObject arg1,
NetObject arg2) |
static void |
Write(UInt32 value) |
static void |
Write(UInt64 value) |
static void |
WriteLine() |
static void |
WriteLine(boolean value) |
static void |
WriteLine(char value) |
static void |
WriteLine(char[] buffer) |
static void |
WriteLine(char[] buffer,
int index,
int count) |
static void |
WriteLine(Decimal value) |
static void |
WriteLine(double value) |
static void |
WriteLine(int value) |
static void |
WriteLine(JCORefOut dupParam0) |
static void |
WriteLine(JCORefOut dupParam0,
int dupParam1,
int dupParam2) |
static void |
WriteLine(long value) |
static void |
WriteLine(NetObject value) |
static void |
WriteLine(Single value) |
static void |
WriteLine(java.lang.String value) |
static void |
WriteLine(java.lang.String format,
NetObject... arg) |
static void |
WriteLine(java.lang.String format,
NetObject arg0) |
static void |
WriteLine(java.lang.String format,
NetObject arg0,
NetObject arg1) |
static void |
WriteLine(java.lang.String format,
NetObject arg0,
NetObject arg1,
NetObject arg2) |
static void |
WriteLine(UInt32 value) |
static void |
WriteLine(UInt64 value) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public Console()
throws java.lang.Throwable
java.lang.Throwablepublic Console(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic static void Beep()
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
PlatformNotSupportedException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
InvalidOperationException,
FormatException,
ArgumentNullException,
ArrayTypeMismatchException
public static void Beep(int frequency,
int duration)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
InvalidOperationException,
ObjectDisposedException
public static Console cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into Console, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedConsole instancejava.lang.Throwable - in case of error during cast operationpublic static void Clear()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
InvalidOperationException,
ObjectDisposedException,
IOException,
OutOfMemoryException
public static ConsoleColor getBackgroundColor() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, InvalidOperationException, OutOfMemoryException
public static int getBufferHeight()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static int getBufferWidth()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static boolean getCapsLock()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public static int getCursorLeft()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static int getCursorSize()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
IndexOutOfRangeException,
FormatException,
InvalidOperationException,
OutOfMemoryException
public static int getCursorTop()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static boolean getCursorVisible()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
IndexOutOfRangeException,
FormatException,
InvalidOperationException,
OutOfMemoryException
public static TextWriter getError() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public static ConsoleColor getForegroundColor() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, InvalidOperationException, OutOfMemoryException
public static TextReader getIn() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public static Encoding getInputEncoding() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException
public static boolean getIsErrorRedirected()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException
public static boolean getIsInputRedirected()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException
public static boolean getIsOutputRedirected()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException
public java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic static boolean getKeyAvailable()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static int getLargestWindowHeight()
throws java.lang.Throwable
java.lang.Throwablepublic static int getLargestWindowWidth()
throws java.lang.Throwable
java.lang.Throwablepublic static boolean getNumberLock()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
InvalidOperationException,
ArrayTypeMismatchException,
NotSupportedException,
ObjectDisposedException,
RankException,
IndexOutOfRangeException
public static TextWriter getOut() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public static Encoding getOutputEncoding() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException
public static java.lang.String getTitle()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException,
NullReferenceException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionNullReferenceExceptionpublic static boolean getTreatControlCAsInput()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
InvalidOperationException,
ObjectDisposedException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static int getWindowHeight()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static int getWindowLeft()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static int getWindowTop()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static int getWindowWidth()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static void MoveBufferArea(int sourceLeft,
int sourceTop,
int sourceWidth,
int sourceHeight,
int targetLeft,
int targetTop)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException,
ArgumentOutOfRangeException
public static void MoveBufferArea(int sourceLeft,
int sourceTop,
int sourceWidth,
int sourceHeight,
int targetLeft,
int targetTop,
char sourceChar,
ConsoleColor sourceForeColor,
ConsoleColor sourceBackColor)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
InvalidOperationException,
ObjectDisposedException,
IOException,
OutOfMemoryException
public static Stream OpenStandardError() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionpublic static Stream OpenStandardError(int bufferSize) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException
public static Stream OpenStandardInput() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionpublic static Stream OpenStandardInput(int bufferSize) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException
public static Stream OpenStandardOutput() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionpublic static Stream OpenStandardOutput(int bufferSize) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException
public static int Read()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException
public static ConsoleKeyInfo ReadKey() throws java.lang.Throwable, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public static ConsoleKeyInfo ReadKey(boolean intercept) throws java.lang.Throwable, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
public static java.lang.String ReadLine()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
OutOfMemoryException
public static void ResetColor()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
IOException,
InvalidOperationException,
OutOfMemoryException
public static void setBackgroundColor(ConsoleColor BackgroundColor) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, InvalidOperationException, OutOfMemoryException
public static void setBufferHeight(int BufferHeight)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
IOException,
PlatformNotSupportedException,
OutOfMemoryException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionIOExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionArgumentOutOfRangeExceptionpublic static void SetBufferSize(int width,
int height)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException,
ArgumentOutOfRangeException
public static void setBufferWidth(int BufferWidth)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
IOException,
PlatformNotSupportedException,
OutOfMemoryException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionIOExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionArgumentOutOfRangeExceptionpublic static void setCursorLeft(int CursorLeft)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
IOException,
PlatformNotSupportedException,
OutOfMemoryException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionIOExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionArgumentOutOfRangeExceptionpublic static void SetCursorPosition(int left,
int top)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
ObjectDisposedException,
InvalidOperationException,
IOException,
OutOfMemoryException
public static void setCursorSize(int CursorSize)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
InvalidOperationException,
ObjectDisposedException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static void setCursorTop(int CursorTop)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
IOException,
PlatformNotSupportedException,
OutOfMemoryException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionIOExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionArgumentOutOfRangeExceptionpublic static void setCursorVisible(boolean CursorVisible)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
IndexOutOfRangeException,
FormatException,
InvalidOperationException,
OutOfMemoryException
public static void SetError(TextWriter newError) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
public static void setForegroundColor(ConsoleColor ForegroundColor) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, InvalidOperationException, OutOfMemoryException
public static void SetIn(TextReader newIn) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
public static void setInputEncoding(Encoding InputEncoding) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObjectpublic static void SetOut(TextWriter newOut) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
public static void setOutputEncoding(Encoding OutputEncoding) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException
public static void setTitle(java.lang.String Title)
throws java.lang.Throwable,
ArgumentException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
ArgumentNullException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionIndexOutOfRangeExceptionFormatExceptionOutOfMemoryExceptionpublic static void setTreatControlCAsInput(boolean TreatControlCAsInput)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
InvalidOperationException,
ObjectDisposedException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException
public static void setWindowHeight(int WindowHeight)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
IOException,
PlatformNotSupportedException,
OutOfMemoryException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionIOExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionArgumentOutOfRangeExceptionpublic static void setWindowLeft(int WindowLeft)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
IOException,
PlatformNotSupportedException,
OutOfMemoryException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionIOExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionArgumentOutOfRangeExceptionpublic static void SetWindowPosition(int left,
int top)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
PlatformNotSupportedException,
ObjectDisposedException,
InvalidOperationException,
IOException,
IndexOutOfRangeException,
FormatException,
OutOfMemoryException,
ArgumentOutOfRangeException
public static void SetWindowSize(int width,
int height)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
PlatformNotSupportedException,
IOException,
IndexOutOfRangeException,
ArgumentOutOfRangeException,
InvalidOperationException,
FormatException,
OutOfMemoryException
public static void setWindowTop(int WindowTop)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
IOException,
PlatformNotSupportedException,
OutOfMemoryException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionIOExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionArgumentOutOfRangeExceptionpublic static void setWindowWidth(int WindowWidth)
throws java.lang.Throwable,
ArgumentException,
InvalidOperationException,
IOException,
PlatformNotSupportedException,
OutOfMemoryException,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentExceptionInvalidOperationExceptionIOExceptionPlatformNotSupportedExceptionOutOfMemoryExceptionArgumentOutOfRangeExceptionpublic static void Write(boolean value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void Write(char value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void Write(char[] buffer)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void Write(char[] buffer,
int index,
int count)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void Write(Decimal value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException, IndexOutOfRangeException, FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionObjectDisposedExceptionArrayTypeMismatchExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionFormatExceptionpublic static void Write(double value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException,
IndexOutOfRangeException,
FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionObjectDisposedExceptionArrayTypeMismatchExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionFormatExceptionpublic static void Write(int value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException,
FormatException
public static void Write(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
public static void Write(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
public static void Write(long value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException,
IndexOutOfRangeException,
FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionObjectDisposedExceptionArrayTypeMismatchExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionFormatExceptionpublic static void Write(NetObject value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException
public static void Write(Single value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException, IndexOutOfRangeException, FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionObjectDisposedExceptionArrayTypeMismatchExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionFormatExceptionpublic static void Write(java.lang.String value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void Write(java.lang.String format,
NetObject... arg)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException
public static void Write(java.lang.String format,
NetObject arg0)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException
public static void Write(java.lang.String format,
NetObject arg0,
NetObject arg1)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException
public static void Write(java.lang.String format,
NetObject arg0,
NetObject arg1,
NetObject arg2)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException
public static void Write(UInt32 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException, IndexOutOfRangeException
public static void Write(UInt64 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException, IndexOutOfRangeException
public static void WriteLine()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void WriteLine(boolean value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void WriteLine(char value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void WriteLine(char[] buffer)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void WriteLine(char[] buffer,
int index,
int count)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void WriteLine(Decimal value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException, IndexOutOfRangeException, FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionObjectDisposedExceptionArrayTypeMismatchExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionFormatExceptionpublic static void WriteLine(double value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException,
IndexOutOfRangeException,
FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionObjectDisposedExceptionArrayTypeMismatchExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionFormatExceptionpublic static void WriteLine(int value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException,
IndexOutOfRangeException,
FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionObjectDisposedExceptionArrayTypeMismatchExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionFormatExceptionpublic static void WriteLine(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
public static void WriteLine(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
public static void WriteLine(long value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException,
IndexOutOfRangeException,
FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionObjectDisposedExceptionArrayTypeMismatchExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionFormatExceptionpublic static void WriteLine(NetObject value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException
public static void WriteLine(Single value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException, IndexOutOfRangeException, FormatException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionArgumentNullExceptionObjectDisposedExceptionArrayTypeMismatchExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionFormatExceptionpublic static void WriteLine(java.lang.String value)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException
public static void WriteLine(java.lang.String format,
NetObject... arg)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException
public static void WriteLine(java.lang.String format,
NetObject arg0)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException
public static void WriteLine(java.lang.String format,
NetObject arg0,
NetObject arg1)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException
public static void WriteLine(java.lang.String format,
NetObject arg0,
NetObject arg1,
NetObject arg2)
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
ArgumentNullException,
ObjectDisposedException,
ArrayTypeMismatchException,
CultureNotFoundException,
NullReferenceException
public static void WriteLine(UInt32 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException
public static void WriteLine(UInt64 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException