• If a string fits on a single line, without concatenation and escaped newlines, you should probably continue to use a string literal.

    //Is a text block helpful here?
    String original = """
            Jean-Baptiste Poquelin""";
    //A string literal works fine
    String better = "Jean-Baptiste Poquelin";