Javadoc @see tags do not need to use a FQCN for classes in java.lang
This commit is contained in:
parent
843fa377c8
commit
83dd1284e4
|
@ -837,7 +837,7 @@ public class Validate {
|
||||||
*
|
*
|
||||||
* @param value the value to validate
|
* @param value the value to validate
|
||||||
* @throws IllegalArgumentException if the value is not a number
|
* @throws IllegalArgumentException if the value is not a number
|
||||||
* @see #notNaN(double, java.lang.String, Object...)
|
* @see #notNaN(double, String, Object...)
|
||||||
*
|
*
|
||||||
* @since 3.5
|
* @since 3.5
|
||||||
*/
|
*/
|
||||||
|
@ -875,7 +875,7 @@ public class Validate {
|
||||||
*
|
*
|
||||||
* @param value the value to validate
|
* @param value the value to validate
|
||||||
* @throws IllegalArgumentException if the value is infinite or Not-a-Number (NaN)
|
* @throws IllegalArgumentException if the value is infinite or Not-a-Number (NaN)
|
||||||
* @see #finite(double, java.lang.String, Object...)
|
* @see #finite(double, String, Object...)
|
||||||
*
|
*
|
||||||
* @since 3.5
|
* @since 3.5
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -73,7 +73,7 @@ public class ConstructorUtils {
|
||||||
* @throws IllegalAccessException if invocation is not permitted by security
|
* @throws IllegalAccessException if invocation is not permitted by security
|
||||||
* @throws InvocationTargetException if an error occurs on invocation
|
* @throws InvocationTargetException if an error occurs on invocation
|
||||||
* @throws InstantiationException if an error occurs on instantiation
|
* @throws InstantiationException if an error occurs on instantiation
|
||||||
* @see #invokeConstructor(java.lang.Class, java.lang.Object[], Class[])
|
* @see #invokeConstructor(Class, Object[], Class[])
|
||||||
*/
|
*/
|
||||||
public static <T> T invokeConstructor(final Class<T> cls, Object... args)
|
public static <T> T invokeConstructor(final Class<T> cls, Object... args)
|
||||||
throws NoSuchMethodException, IllegalAccessException, InvocationTargetException,
|
throws NoSuchMethodException, IllegalAccessException, InvocationTargetException,
|
||||||
|
@ -136,7 +136,7 @@ public class ConstructorUtils {
|
||||||
* @throws IllegalAccessException if invocation is not permitted by security
|
* @throws IllegalAccessException if invocation is not permitted by security
|
||||||
* @throws InvocationTargetException if an error occurs on invocation
|
* @throws InvocationTargetException if an error occurs on invocation
|
||||||
* @throws InstantiationException if an error occurs on instantiation
|
* @throws InstantiationException if an error occurs on instantiation
|
||||||
* @see #invokeExactConstructor(java.lang.Class, java.lang.Object[], Class[])
|
* @see #invokeExactConstructor(Class, Object[], Class[])
|
||||||
*/
|
*/
|
||||||
public static <T> T invokeExactConstructor(final Class<T> cls, Object... args)
|
public static <T> T invokeExactConstructor(final Class<T> cls, Object... args)
|
||||||
throws NoSuchMethodException, IllegalAccessException, InvocationTargetException,
|
throws NoSuchMethodException, IllegalAccessException, InvocationTargetException,
|
||||||
|
|
Loading…
Reference in New Issue