I have been conducting my PhD research on the usability of JavaDocs and my findings actually go against the "official guidelines" provided by Sun (document everything and document well), and provide support for the "agile" approach (write what is useful).
In a nutshell, the problem is this: when you write everything, you are essentially writing a specification - elaborate details that are going to allow someone who "really cares" to learn everything about your function and possibly write a complete test plan. That is important in many applications.
HOWEVER, in everyday development scenarios, no developer is going to actually spend their time reading everything that you've provided (I can show you numbers on that). They are going to skim, and they are going to miss information.
Often, the things that are most important to communicate are directives - typically do and don't do instructions, or caveats and other "surprising" information. Only some methods convey these, and they are often lost among the specifications.
By writing elaborate JavaDocs you are effectively hiding the important directives and reducing the chances that they would be consumed. Users also tend to avoid reading JavaDocs that look too long.
My approach to this problem is with the explicit tagging of directives, so a user skimming the JavaDocs would see them. I have a list of tags on my site.
I also developed a tool called eMoose that highlights calls that have directives, and we've been getting good lab results with it, and we're going to present it at EclipseCon this year. Contact me if you'd like more of the numbers that I have.
As for what you specifically asked about: If you go with documenting everything, go based on Sun's specs, but that means documenting even obvious things. Do try to avoid adding HTML, since it harms readability without using an IDE. The book "Clean Code" has a great section on documentation.
Here are the custom tags that we've found necessary by surveying many APIs:
usage.restriction - Forbids the use of the method from certain contexts (e.g., "don't invoke from the UI thread") or defines the entities allowed to make the invocation (e.g., "To be called only from debug infrastructure")
usage.protocol - Conveys some invocation sequence. For example "don't invoke this before you invoked X" or "remember to notify Y after calling this".
usage.threading - Conveys some issues relating to threading, such as requiring the use of a system thread or indicating that execution may block.
usage.locking - Conveys specific locking requirements
usage.performance - Conveys to the client that there is some performance issue with using this method. For example, that it takes a lot of time
usage.parameter - Conveys specific instructions about the return value, such as deallocation responsibilities. Don't use this for trivial things (use the @param tag for those).
usage.return - Conveys specific instructions about the return value, such as deallocation responsibilities. Don't use this for trivial things (use the @return tag for those).
usage.sideeffect - Alerts the user to some sideeffect associated with invoking this method
usage.security - Alerts the user to some security implications or requirements associated with invoking this method.
usage.alternative - Conveys to the users that they may want to use a different method. For example, "to cause a refresh, call X instead".
usage.recommendation - Conveys to the users that they may want to perform additional operations. For example, "you may want to validate the URL first".
usage.limitation - Alerts the user to some (unexpected) limitation in how the method works. For example, "does not announce changes to listeners"
usage.patternrole - Conveys to the user that the method or class is part of a pattern. Rarely used.
usage.association - Conveys to the user that the method or class is associated with some other entity. Rarely used.
Below I'm pasting a photo of what the tool looks like in use: there are two tagged things in the JavaDoc of a method, and one of the calls is highlighted to indicate that it's target has a directive.
