java.lang.Object
org.eclipse.xtext.xbase.lib.InputOutput
Utilities to print information to the console.
- Author:
- Sven Efftinge - Initial contribution and API
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <T> Tprint(T o) Prints the givenobjecttoSystem.out.static voidprintln()Prints a newline to standard out, by delegating directly toSystem.out.println()static <T> Tprintln(T object) Prints the givenobjecttoSystem.outand terminate the line.
-
Constructor Details
-
InputOutput
public InputOutput()
-
-
Method Details
-
println
public static void println()Prints a newline to standard out, by delegating directly toSystem.out.println()- Since:
- 2.3
-
println
public static <T> T println(T object) Prints the givenobjecttoSystem.outand terminate the line. Useful to log partial expressions to trap errors, e.g. the following is possible:println(1 + println(2)) + 3- Parameters:
object- the to-be-printed object- Returns:
- the printed object.
-
print
public static <T> T print(T o) Prints the givenobjecttoSystem.out. Useful to log partial expressions to trap errors, e.g. the following is possible:1 + print(2) + 3- Parameters:
o- the to-be-printed object- Returns:
- the printed object.
-