Package system
Class Console
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.Console
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class Console extends NetObject
The base .NET class managing System.Console, System.Console, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Console
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Console, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Consolestatic java.lang.String
className
Qualified class name: System.Consolestatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
Beep()
static void
Beep(int frequency, int duration)
static Console
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoConsole
, 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 namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typestatic 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(double value)
static void
Write(int value)
static void
Write(long value)
static void
Write(java.lang.String value)
static void
Write(java.lang.String format, NetObject arg0)
static void
Write(java.lang.String format, NetObject... arg)
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(JCORefOut dupParam0)
static void
Write(JCORefOut dupParam0, int dupParam1, int dupParam2)
static void
Write(NetObject value)
static void
Write(Decimal value)
static void
Write(Single value)
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(double value)
static void
WriteLine(int value)
static void
WriteLine(long value)
static void
WriteLine(java.lang.String value)
static void
WriteLine(java.lang.String format, NetObject arg0)
static void
WriteLine(java.lang.String format, NetObject... arg)
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(JCORefOut dupParam0)
static void
WriteLine(JCORefOut dupParam0, int dupParam1, int dupParam2)
static void
WriteLine(NetObject value)
static void
WriteLine(Decimal value)
static void
WriteLine(Single value)
static void
WriteLine(UInt32 value)
static void
WriteLine(UInt64 value)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Console, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Console- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Console- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Console cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoConsole
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Console
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Read
public static int Read() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException
-
ReadKey
public static ConsoleKeyInfo ReadKey() throws java.lang.Throwable, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
ReadKey
public static ConsoleKeyInfo ReadKey(boolean intercept) throws java.lang.Throwable, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArgumentException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
OpenStandardError
public static Stream OpenStandardError() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentNullException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentNullException
ArgumentOutOfRangeException
-
OpenStandardError
public static Stream OpenStandardError(int bufferSize) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException
-
OpenStandardInput
public static Stream OpenStandardInput() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentNullException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentNullException
ArgumentOutOfRangeException
-
OpenStandardInput
public static Stream OpenStandardInput(int bufferSize) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException
-
OpenStandardOutput
public static Stream OpenStandardOutput() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentNullException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentNullException
ArgumentOutOfRangeException
-
OpenStandardOutput
public static Stream OpenStandardOutput(int bufferSize) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException
-
ReadLine
public static java.lang.String ReadLine() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException
-
Beep
public static void Beep() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Beep
public static void Beep(int frequency, int duration) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException
-
Clear
public static void Clear() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, IOException, OutOfMemoryException
-
MoveBufferArea
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, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, IOException, OutOfMemoryException
-
MoveBufferArea
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, FormatException, OutOfMemoryException, ArgumentOutOfRangeException
-
ResetColor
public static void ResetColor() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, InvalidOperationException, OutOfMemoryException
-
SetBufferSize
public static void SetBufferSize(int width, int height) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException, ArgumentOutOfRangeException
-
SetCursorPosition
public static void SetCursorPosition(int left, int top) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, IOException, OutOfMemoryException
-
SetError
public static void SetError(TextWriter newError) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
SetIn
public static void SetIn(TextReader newIn) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
SetOut
public static void SetOut(TextWriter newOut) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
SetWindowPosition
public static void SetWindowPosition(int left, int top) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException, ArgumentOutOfRangeException
-
SetWindowSize
public static void SetWindowSize(int width, int height) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IOException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
Write
public static void Write(boolean value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
Write
public static void Write(char value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
Write
public static void Write(char[] buffer, int index, int count) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
Write
public static void Write(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
Write
public static void Write(char[] buffer) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
Write
public static void Write(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
Write
public static void Write(double value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, FormatException
-
Write
public static void Write(int value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, IndexOutOfRangeException, FormatException
-
Write
public static void Write(long value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, IndexOutOfRangeException, FormatException
-
Write
public static void Write(Single value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, FormatException
-
Write
public static void Write(Decimal value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, FormatException
-
Write
public static void Write(NetObject value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
Write
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
-
Write
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
-
Write
public static void Write(java.lang.String format, NetObject arg0) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
Write
public static void Write(java.lang.String format, NetObject... arg) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
Write
public static void Write(java.lang.String value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
Write
public static void Write(UInt32 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
Write
public static void Write(UInt64 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
WriteLine
public static void WriteLine() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
WriteLine
public static void WriteLine(boolean value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
WriteLine
public static void WriteLine(char value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
WriteLine
public static void WriteLine(char[] buffer, int index, int count) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
WriteLine
public static void WriteLine(JCORefOut dupParam0, int dupParam1, int dupParam2) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
WriteLine
public static void WriteLine(char[] buffer) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
WriteLine
public static void WriteLine(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
WriteLine
public static void WriteLine(double value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, IndexOutOfRangeException, FormatException
-
WriteLine
public static void WriteLine(int value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, IndexOutOfRangeException, FormatException
-
WriteLine
public static void WriteLine(long value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, IndexOutOfRangeException, FormatException
-
WriteLine
public static void WriteLine(Single value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, IndexOutOfRangeException, FormatException
-
WriteLine
public static void WriteLine(Decimal value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException, IndexOutOfRangeException, FormatException
-
WriteLine
public static void WriteLine(NetObject value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
WriteLine
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
-
WriteLine
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
-
WriteLine
public static void WriteLine(java.lang.String format, NetObject arg0) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
WriteLine
public static void WriteLine(java.lang.String format, NetObject... arg) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
WriteLine
public static void WriteLine(java.lang.String value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException
-
WriteLine
public static void WriteLine(UInt32 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
WriteLine
public static void WriteLine(UInt64 value) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, ObjectDisposedException, ArrayTypeMismatchException, CultureNotFoundException
-
getCapsLock
public static boolean getCapsLock() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
getCursorVisible
public static boolean getCursorVisible() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
setCursorVisible
public static void setCursorVisible(boolean CursorVisible) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
getIsErrorRedirected
public static boolean getIsErrorRedirected() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getIsInputRedirected
public static boolean getIsInputRedirected() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getIsOutputRedirected
public static boolean getIsOutputRedirected() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getKeyAvailable
public static boolean getKeyAvailable() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
getNumberLock
public static boolean getNumberLock() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException
-
getTreatControlCAsInput
public static boolean getTreatControlCAsInput() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, IOException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
setTreatControlCAsInput
public static void setTreatControlCAsInput(boolean TreatControlCAsInput) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, IOException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
getBufferHeight
public static int getBufferHeight() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException
-
setBufferHeight
public static void setBufferHeight(int BufferHeight) throws java.lang.Throwable, ArgumentException, InvalidOperationException, IOException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArgumentOutOfRangeException
-
getBufferWidth
public static int getBufferWidth() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException
-
setBufferWidth
public static void setBufferWidth(int BufferWidth) throws java.lang.Throwable, ArgumentException, InvalidOperationException, IOException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArgumentOutOfRangeException
-
getCursorLeft
public static int getCursorLeft() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException
-
setCursorLeft
public static void setCursorLeft(int CursorLeft) throws java.lang.Throwable, ArgumentException, InvalidOperationException, IOException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArgumentOutOfRangeException
-
getCursorSize
public static int getCursorSize() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
setCursorSize
public static void setCursorSize(int CursorSize) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
getCursorTop
public static int getCursorTop() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException
-
setCursorTop
public static void setCursorTop(int CursorTop) throws java.lang.Throwable, ArgumentException, InvalidOperationException, IOException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArgumentOutOfRangeException
-
getLargestWindowHeight
public static int getLargestWindowHeight() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getLargestWindowWidth
public static int getLargestWindowWidth() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getWindowHeight
public static int getWindowHeight() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException
-
setWindowHeight
public static void setWindowHeight(int WindowHeight) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IOException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
getWindowLeft
public static int getWindowLeft() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException
-
setWindowLeft
public static void setWindowLeft(int WindowLeft) throws java.lang.Throwable, ArgumentException, InvalidOperationException, IOException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArgumentOutOfRangeException
-
getWindowTop
public static int getWindowTop() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException
-
setWindowTop
public static void setWindowTop(int WindowTop) throws java.lang.Throwable, ArgumentException, InvalidOperationException, IOException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, ArgumentOutOfRangeException
-
getWindowWidth
public static int getWindowWidth() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ObjectDisposedException, InvalidOperationException, IOException, FormatException, OutOfMemoryException
-
setWindowWidth
public static void setWindowWidth(int WindowWidth) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IOException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException
-
getBackgroundColor
public static ConsoleColor getBackgroundColor() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, InvalidOperationException, OutOfMemoryException
-
setBackgroundColor
public static void setBackgroundColor(ConsoleColor BackgroundColor) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, InvalidOperationException, OutOfMemoryException
-
getForegroundColor
public static ConsoleColor getForegroundColor() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, InvalidOperationException, OutOfMemoryException
-
setForegroundColor
public static void setForegroundColor(ConsoleColor ForegroundColor) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, IOException, InvalidOperationException, OutOfMemoryException
-
getIn
public static TextReader getIn() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getError
public static TextWriter getError() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getOut
public static TextWriter getOut() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException
-
getTitle
public static java.lang.String getTitle() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, IndexOutOfRangeException, PlatformNotSupportedException, FormatException, OutOfMemoryException
-
setTitle
public static void setTitle(java.lang.String Title) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
getInputEncoding
public static Encoding getInputEncoding() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException
-
setInputEncoding
public static void setInputEncoding(Encoding InputEncoding) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
getOutputEncoding
public static Encoding getOutputEncoding() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException
-
setOutputEncoding
public static void setOutputEncoding(Encoding OutputEncoding) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
OutOfMemoryException
-
-