public abstract class SystemConsole
extends java.lang.Object
Utility functions for writing to the system console.
Constructor and Description |
---|
SystemConsole() |
Modifier and Type | Method and Description |
---|---|
static void |
write(java.lang.String text)
Write
text to the system console. |
static void |
writeLine(java.lang.String text)
Write
text and a newline to the system console. |
public static void write(java.lang.String text)
Write text
to the system console.
text
- Text to be written to the console.public static void writeLine(java.lang.String text)
Write text
and a newline to the system console.
text
- Text to be written to the console.