- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
@ClassVersion(sourceVersion="$Id: Printer.java 1005 2022-02-03 12:40:52Z tquadrat $")
@API(status=STABLE,
since="0.1.0")
public interface Printer
Prints a formatted message.
This is a functional interface whose functional method is
printf(Locale,String,Object...)
.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: Printer.java 1005 2022-02-03 12:40:52Z tquadrat $
- Since:
- 0.1.0
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.lang.Printer"
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
Prints the given object instance after converting it to a String.default void
Prints the given message, using the current locale.void
Prints the given message.default void
println()
Prints a new-line.default void
Prints the given object instance after converting it to a String, followed by a new-line.
-
Method Details
-
printf
Prints the given message.- Parameters:
locale
- The local to use for the formatting of the message.message
- The message; this is a format String as defined forFormatter
.args
- The optional arguments.- See Also:
-
printf
Prints the given message, using the current locale.- Parameters:
message
- The message; this is a format String as defined forFormatter
.args
- The optional arguments.- See Also:
-
print
Prints the given object instance after converting it to a String.- Parameters:
object
- The object to print.
-
println
Prints the given object instance after converting it to a String, followed by a new-line.- Parameters:
object
- The object to print.
-
println
Prints a new-line.
-