Package android.util

Interface Printer

  • All Known Implementing Classes:
    PrefixPrinter

    public interface Printer
    Simple interface for printing text, allowing redirection to various targets. Standard implementations are android.util.LogPrinter, android.util.StringBuilderPrinter, and android.util.PrintWriterPrinter.
    • Method Detail

      • println

        void println​(String x)
        Write a line of text to the output. There is no need to terminate the given string with a newline.