fix links to deprecated annotation in jdoc
This commit is contained in:
parent
8b86cb1cdf
commit
715212c694
|
@ -22,14 +22,14 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>Use {@link SortNatural} to sort by {@linkplain java.util.Comparator natural order}.
|
* <li>Use {@link SortNatural} to sort by {@linkplain java.util.Comparator natural order}.
|
||||||
* <li>Use {@link jakarta.persistence.OrderBy} to order using an expression written in HQL.
|
* <li>Use {@link jakarta.persistence.OrderBy} to order using an expression written in HQL.
|
||||||
* <li>Use {@link OrderBy} to order using an expression written in native SQL.
|
* <li>Use {@link SQLOrder} to order using an expression written in native SQL.
|
||||||
* </ul>
|
* </ul>
|
||||||
* <p>
|
* <p>
|
||||||
* It is illegal to use both {@code SortComparator} and {@link SortNatural}.
|
* It is illegal to use both {@code SortComparator} and {@link SortNatural}.
|
||||||
*
|
*
|
||||||
* @see SortComparator
|
* @see SortComparator
|
||||||
* @see jakarta.persistence.OrderBy
|
* @see jakarta.persistence.OrderBy
|
||||||
* @see OrderBy
|
* @see SQLOrder
|
||||||
*
|
*
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -21,14 +21,14 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>Use {@link SortComparator} to sort the collection in memory using a {@link java.util.Comparator}.
|
* <li>Use {@link SortComparator} to sort the collection in memory using a {@link java.util.Comparator}.
|
||||||
* <li>Use {@link jakarta.persistence.OrderBy} to order using an expression written in HQL.
|
* <li>Use {@link jakarta.persistence.OrderBy} to order using an expression written in HQL.
|
||||||
* <li>Use {@link OrderBy} to order using an expression written in native SQL.
|
* <li>Use {@link SQLOrder} to order using an expression written in native SQL.
|
||||||
* </ul>
|
* </ul>
|
||||||
* <p>
|
* <p>
|
||||||
* It is illegal to use both {@code SortNatural} and {@link SortComparator}.
|
* It is illegal to use both {@code SortNatural} and {@link SortComparator}.
|
||||||
*
|
*
|
||||||
* @see SortComparator
|
* @see SortComparator
|
||||||
* @see jakarta.persistence.OrderBy
|
* @see jakarta.persistence.OrderBy
|
||||||
* @see OrderBy
|
* @see SQLOrder
|
||||||
*
|
*
|
||||||
* @author Steve Ebersole
|
* @author Steve Ebersole
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue