rspec/rules/S5663/java/rule.adoc
2021-04-28 18:08:03 +02:00

25 lines
531 B
Plaintext

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
* https://openjdk.java.net/jeps/378[JEP 378: Text Blocks]
* https://cr.openjdk.java.net/~jlaskey/Strings/TextBlocksGuide_v9.html[Programmer's Guide To Text Blocks], by Jim Laskey and Stuart Marks