问题
If I write <xmlElement>
in a javadoc, it does not appear, because tags have special functions on formatting texts.
How can I show this chars in a javadoc?
回答1:
You can use <
for < and >
for > .
回答2:
Recent versions of JavaDoc support {@literal A<B>C}; this outputs the content correctly (escaping the '<' and '>' in the generated HTML).
See http://download.oracle.com/javase/1.5.0/docs/guide/javadoc/whatsnew-1.5.0.html
回答3:
Considering XML is actual code, I believe XML snippets in Javadoc are better suited for the {@code A<B>C} tag rather than the {@literal A<B>C} tag.
The {@code } tag uses a fixed-width font which makes its content standout as actual code.
回答4:
Escape them as HTML: <
and >
回答5:
You only need to use the HTML equivalent for one of the angle brackets. The <
can be represented as either <
or <
. Here's a sample taken from real Javadoc:
<pre> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> [...]
This displays as:
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
回答6:
If you set maven up to use markdown, you can just surround it with backticks.
`A<B>C`
reads a bit nicer than {@code A<B>C}
回答7:
Interposition of <pre> and {@code} saves angle brackets and empty lines in javadocs and is widely used, see java.util.Stream for example.
<pre>{@code
A<B>C
D<E>F
}</pre>
回答8:
Just surround it with {@code}
like this:
{@code <xmlElement>}
来源:https://stackoverflow.com/questions/2898897/how-can-i-use-and-in-javadoc-without-formatting