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

// ORIGINAL - is a text block helpful here?
String name = """
Pat Q. Smith""";

// BETTER - a string literal works fine
String name = "Pat Q. Smith";