You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Gets the (initialized) class represented by {@code className} using the {@code classLoader}. This implementation
540
540
* supports the syntaxes "{@code java.util.Map.Entry[]}", "{@code java.util.Map$Entry[]}",
541
541
* "{@code [Ljava.util.Map.Entry;}", and "{@code [Ljava.util.Map$Entry;}".
542
+
* <p>
543
+
* The provided class name is normalized by removing all whitespace. This is especially helpful when handling XML element values in which whitespace has not
544
+
* been collapsed.
545
+
* </p>
542
546
*
543
547
* @param classLoader the class loader to use to load the class.
544
548
* @param className the class name.
@@ -560,6 +564,10 @@ public static Class<?> getClass(final ClassLoader classLoader, final String clas
560
564
* Gets the class represented by {@code className} using the {@code classLoader}. This implementation supports the
561
565
* syntaxes "{@code java.util.Map.Entry[]}", "{@code java.util.Map$Entry[]}", "{@code [Ljava.util.Map.Entry;}", and
562
566
* "{@code [Ljava.util.Map$Entry;}".
567
+
* <p>
568
+
* The provided class name is normalized by removing all whitespace. This is especially helpful when handling XML element values in which whitespace has not
569
+
* been collapsed.
570
+
* </p>
563
571
*
564
572
* @param classLoader the class loader to use to load the class.
565
573
* @param className the class name.
@@ -596,6 +604,10 @@ public static Class<?> getClass(final ClassLoader classLoader, final String clas
596
604
* Gets the (initialized) class represented by {@code className} using the current thread's context class loader.
597
605
* This implementation supports the syntaxes "{@code java.util.Map.Entry[]}", "{@code java.util.Map$Entry[]}",
598
606
* "{@code [Ljava.util.Map.Entry;}", and "{@code [Ljava.util.Map$Entry;}".
607
+
* <p>
608
+
* The provided class name is normalized by removing all whitespace. This is especially helpful when handling XML element values in which whitespace has not
609
+
* been collapsed.
610
+
* </p>
599
611
*
600
612
* @param className the class name
601
613
* @return the class represented by {@code className} using the current thread's context class loader
* Gets the class represented by {@code className} using the current thread's context class loader. This
617
629
* implementation supports the syntaxes "{@code java.util.Map.Entry[]}", "{@code java.util.Map$Entry[]}",
618
630
* "{@code [Ljava.util.Map.Entry;}", and "{@code [Ljava.util.Map$Entry;}".
631
+
* <p>
632
+
* The provided class name is normalized by removing all whitespace. This is especially helpful when handling XML element values in which whitespace has not
633
+
* been collapsed.
634
+
* </p>
619
635
*
620
636
* @param className the class name.
621
637
* @param initialize whether the class must be initialized.
* Converts and cleans up a class name to a JLS style class name.
1578
+
* <p>
1579
+
* The provided class name is normalized by removing all whitespace. This is especially helpful when handling XML element values in which whitespace has not
0 commit comments