Don't just use {@see ...}
, which has a different meaning and has some problems (like not overriding inherited documentation).
A spartan /** See: {@link ...}. */
is better.
However, best is to add a bit more text than just "See". Briefly describe the intent of this method and what is specific to it, and {@link ...}
to a method which explains the full contract in detail. This is often done in the JDK and other libraries and is a good practice.
Eg:
/**
* Does something very important.
* For details see {@link #doSomething(Integer)}.
*/
or:
/**
* Does something very important.
* Equivalent to calling {@link #doSomething(Integer) doSomething(0)}.
*/