How to quote "*/" in JavaDocs

JavaCommentsJavadoc

Java Problem Overview


I have a need to include */ in my JavaDoc comment. The problem is that this is also the same sequence for closing a comment. What the proper way to quote/escape this?

Example:

/**
 * Returns true if the specified string contains "*/".
 */
public boolean containsSpecialSequence(String str)

Follow up: It appears I can use / for the slash. The only downside is that this isn't all that readable when viewing the code directly in a text editor.

/**
 * Returns true if the specified string contains "*/".
 */

Java Solutions


Solution 1 - Java

Use HTML escaping.

So in your example:

/**
 * Returns true if the specified string contains "*/".
 */
public boolean containsSpecialSequence(String str)

/ escapes as a "/" character.

Javadoc should insert the escaped sequence unmolested into the HTML it generates, and that should render as "*/" in your browser.

If you want to be very careful, you could escape both characters: */ translates to */

Edit:

> Follow up: It appears I can use / > for the slash. The only downside is > that this isn't all that readable when > view the code directly.

So? The point isn't for your code to be readable, the point is for your code documentation to be readable. Most Javadoc comments embed complex HTML for explaination. Hell, C#'s equivalent offers a complete XML tag library. I've seen some pretty intricate structures in there, let me tell you.

Edit 2: If it bothers you too much, you might embed a non-javadoc inline comment that explains the encoding:

/**
 * Returns true if the specified string contains "*/".
 */
// returns true if the specified string contains "*/"
public boolean containsSpecialSequence(String str)

Solution 2 - Java

Nobody mentioned {@literal}. This is another way to go:

/**
 * Returns true if the specified string contains "*{@literal /}".
 */

Unfortunately you cannot escape */ at a time. With some drawbacks, this also fixes:

>> The only downside is that this isn't all that readable when viewing the code directly in a text editor.

Solution 3 - Java

/**
 * Returns true if the specified string contains "*/".
 */

This is the ‘right’ solution, but for readability's sake I'd probably go for:

/**
 * Returns true if the string contains an asterisk followed by slash.
 */

Solution 4 - Java

Use the entity

*/ 

In your documentation it will show up as a "*/"

Solution 5 - Java

Another way I stumbled upon, just for completeness: add some HTML markup which doesn't alter the output between the * and /.

  /**
   * *<b/>/
   */

Compared to the HTML escape solution, this seems something of an ugly hack, but it also yields the right result in HTML output.

Solution 6 - Java

I would suggest you also add a line comment somewhere near saying something like

// *&#47; is html for */

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSteve KuoView Question on Stackoverflow
Solution 1 - JavaRandolphoView Answer on Stackoverflow
Solution 2 - JavaLyubomyr ShaydarivView Answer on Stackoverflow
Solution 3 - JavabobinceView Answer on Stackoverflow
Solution 4 - JavacpatrickView Answer on Stackoverflow
Solution 5 - JavaJonikView Answer on Stackoverflow
Solution 6 - JavahasenView Answer on Stackoverflow