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

Noncompliant Code Example

String question = """
              What's the point, really?""";

Compliant Solution

String question = "What's the point, really?";

See