|
37 | 37 |
|
38 | 38 | /**
|
39 | 39 | * Contextual descriptor about a type to convert from or to.
|
40 |
| - * Capable of representing arrays and generic collection types. |
| 40 | + * <p>Capable of representing arrays and generic collection types. |
41 | 41 | *
|
42 | 42 | * @author Keith Donald
|
43 | 43 | * @author Andy Clement
|
@@ -345,9 +345,9 @@ public TypeDescriptor getElementTypeDescriptor() {
|
345 | 345 | * from the provided collection or array element.
|
346 | 346 | * <p>Narrows the {@link #getElementTypeDescriptor() elementType} property to the class
|
347 | 347 | * of the provided collection or array element. For example, if this describes a
|
348 |
| - * {@code java.util.List<java.lang.Number<} and the element argument is an |
| 348 | + * {@code java.util.List<java.lang.Number>} and the element argument is a |
349 | 349 | * {@code java.lang.Integer}, the returned TypeDescriptor will be {@code java.lang.Integer}.
|
350 |
| - * If this describes a {@code java.util.List<?>} and the element argument is an |
| 350 | + * If this describes a {@code java.util.List<?>} and the element argument is a |
351 | 351 | * {@code java.lang.Integer}, the returned TypeDescriptor will be {@code java.lang.Integer}
|
352 | 352 | * as well.
|
353 | 353 | * <p>Annotation and nested type context will be preserved in the narrowed
|
@@ -388,9 +388,9 @@ public TypeDescriptor getMapKeyTypeDescriptor() {
|
388 | 388 | * from the provided map key.
|
389 | 389 | * <p>Narrows the {@link #getMapKeyTypeDescriptor() mapKeyType} property
|
390 | 390 | * to the class of the provided map key. For example, if this describes a
|
391 |
| - * {@code java.util.Map<java.lang.Number, java.lang.String<} and the key |
| 391 | + * {@code java.util.Map<java.lang.Number, java.lang.String>} and the key |
392 | 392 | * argument is a {@code java.lang.Integer}, the returned TypeDescriptor will be
|
393 |
| - * {@code java.lang.Integer}. If this describes a {@code java.util.Map<?, ?>} |
| 393 | + * {@code java.lang.Integer}. If this describes a {@code java.util.Map<?, ?>} |
394 | 394 | * and the key argument is a {@code java.lang.Integer}, the returned
|
395 | 395 | * TypeDescriptor will be {@code java.lang.Integer} as well.
|
396 | 396 | * <p>Annotation and nested type context will be preserved in the narrowed
|
@@ -425,9 +425,9 @@ public TypeDescriptor getMapValueTypeDescriptor() {
|
425 | 425 | * from the provided map value.
|
426 | 426 | * <p>Narrows the {@link #getMapValueTypeDescriptor() mapValueType} property
|
427 | 427 | * to the class of the provided map value. For example, if this describes a
|
428 |
| - * {@code java.util.Map<java.lang.String, java.lang.Number<} and the value |
| 428 | + * {@code java.util.Map<java.lang.String, java.lang.Number>} and the value |
429 | 429 | * argument is a {@code java.lang.Integer}, the returned TypeDescriptor will be
|
430 |
| - * {@code java.lang.Integer}. If this describes a {@code java.util.Map<?, ?>} |
| 430 | + * {@code java.lang.Integer}. If this describes a {@code java.util.Map<?, ?>} |
431 | 431 | * and the value argument is a {@code java.lang.Integer}, the returned
|
432 | 432 | * TypeDescriptor will be {@code java.lang.Integer} as well.
|
433 | 433 | * <p>Annotation and nested type context will be preserved in the narrowed
|
|
0 commit comments