26 lines
713 B
Plaintext
26 lines
713 B
Plaintext
=== Compliant solution
|
|
|
|
[source,text]
|
|
----
|
|
String.format("The value of my integer is %d", 3);
|
|
String.format("Duke's Birthday year is %tY", c);
|
|
String.format("Display %1$d and then %d", 1);
|
|
String.format("Not enough arguments %d and %d", 1, 2);
|
|
String.format("%d is equals to %<", 2);
|
|
|
|
MessageFormat.format("Result {0}.", value);
|
|
MessageFormat.format("Result {0} & {1}.", value, value);
|
|
MessageFormat.format("Result {0}.", myObject);
|
|
|
|
java.util.logging.Logger logger;
|
|
logger.log(java.util.logging.Level.SEVERE, "Result {1},{2}!", 14, 2);
|
|
|
|
org.slf4j.Logger slf4jLog;
|
|
org.slf4j.Marker marker;
|
|
|
|
slf4jLog.debug(marker, "message {}", 1);
|
|
|
|
org.apache.logging.log4j.Logger log4jLog;
|
|
log4jLog.debug("message {}", 1);
|
|
----
|