--- a/src/java.base/share/classes/java/lang/Class.java +++ b/src/java.base/share/classes/java/lang/Class.java @@ -923,6 +923,9 @@ public final class Class implements java.io.Serializable, * returns "[[[[[[[I" * * + * @apiNote + * Distinct class objects can have the same name but different class loaders. + * * @return the name of the class, interface, or other entity * represented by this {@code Class} object. * @jls 13.1 The Form of a Binary @@ -4541,11 +4544,6 @@ public final class Class implements java.io.Serializable, * is a one-letter code corresponding to a primitive type or {@code void} * ({@code "B", "C", "D", "F", "I", "J", "S", "Z", "V"}) (JVMS {@jvms 4.3.2}). * - * @apiNote - * This is not a strict inverse of {@link #forName}; - * distinct classes which share a common name but have different class loaders - * will have identical descriptor strings. - * * @return the descriptor string for this {@code Class} object * @jvms 4.3.2 Field Descriptors * @since 12 --- a/src/java.base/share/classes/java/lang/invoke/MethodType.java +++ b/src/java.base/share/classes/java/lang/invoke/MethodType.java @@ -1161,26 +1160,29 @@ class MethodType } /** - * Finds or creates an instance of a method type, given the spelling of its bytecode descriptor. - * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}. + * Finds or creates an instance of a method type of the given method descriptor + * (JVMS {@jvms 4.3.3}). This method is a convenience method for + * {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}. * Any class or interface name embedded in the descriptor string will be - * resolved by the given loader (or if it is null, on the system class loader). - *

- * Note that it is possible to encounter method types which cannot be - * constructed by this method, because their component types are - * not all reachable from a common class loader. + * resolved by the given loader (or if it is {@code null}, on the system class loader). + * + * @apiNote + * It is possible to encounter method types that have valid descriptors but + * cannot be constructed by this method, because their component types are + * not visible from a common class loader. *

* This method is included for the benefit of applications that must * generate bytecodes that process method handles and {@code invokedynamic}. - * @param descriptor a bytecode-level type descriptor string "(T...)T" + * @param descriptor a method descriptor string * @param loader the class loader in which to look up the types - * @return a method type matching the bytecode-level type descriptor - * @throws NullPointerException if the string is null - * @throws IllegalArgumentException if the string is not well-formed + * @return a method type of the given method descriptor + * @throws NullPointerException if the string is {@code null} + * @throws IllegalArgumentException if the string is not a method descriptor * @throws TypeNotPresentException if a named type cannot be found * @throws SecurityException if the security manager is present and * {@code loader} is {@code null} and the caller does not have the * {@link RuntimePermission}{@code ("getClassLoader")} + * @jvms 4.3.3 Method Descriptors */ public static MethodType fromMethodDescriptorString(String descriptor, ClassLoader loader) throws IllegalArgumentException, TypeNotPresentException @@ -1220,19 +1222,19 @@ class MethodType } /** - * Returns a descriptor string for the method type. This method + * {@return the descriptor string for this method type} This method * is equivalent to calling {@link #descriptorString() MethodType::descriptorString}. * - *

- * Note that this is not a strict inverse of {@link #fromMethodDescriptorString fromMethodDescriptorString}. + * @apiNote + * This is not a strict inverse of {@link #fromMethodDescriptorString + * fromMethodDescriptorString} which requires a method type descriptor + * (JVMS {@jvms 4.3.3}) and a suitable class loader argument. * Two distinct classes which share a common name but have different class loaders - * will appear identical when viewed within descriptor strings. + * produce identical component descriptors in descriptor strings. + * *

* This method is included for the benefit of applications that must * generate bytecodes that process method handles and {@code invokedynamic}. - * {@link #fromMethodDescriptorString(java.lang.String, java.lang.ClassLoader) fromMethodDescriptorString}, - * because the latter requires a suitable class loader argument. - * @return the descriptor string for this method type * @jvms 4.3.3 Method Descriptors * @see Nominal Descriptor for {@code MethodType} */