@@ -160,11 +160,11 @@ default MultiValueMap<String, Object> getAllAnnotationAttributes(
160
160
* <p>Note: in contrast to {@link #getAllAnnotationAttributes(String)},
161
161
* this method <em>does</em> take attribute overrides on composed annotations
162
162
* into account.
163
- * @param annotationName the fully qualified class name of the annotation
163
+ * @param annotationName the fully- qualified class name of the annotation
164
164
* type to look for
165
- * @return a list of maps of attributes, with the attribute name as map key
166
- * (e.g. "key ") and the attribute value as map value; never {@code null} but
167
- * potentially empty if no such annotations are found
165
+ * @return a set of maps of attributes, with each annotation attribute name
166
+ * as map key (e.g. "location ") and the attribute's value as map value; never
167
+ * {@code null} but potentially empty if no such annotations are found
168
168
* @since 6.1
169
169
* @see #getAllMergedAnnotationAttributes(String, boolean)
170
170
*/
@@ -178,12 +178,14 @@ default Set<? extends Map<String, Object>> getAllMergedAnnotationAttributes(Stri
178
178
* <p>Note: in contrast to {@link #getAllAnnotationAttributes(String, boolean)},
179
179
* this method <em>does</em> take attribute overrides on composed annotations
180
180
* into account.
181
- * @param annotationName the fully qualified class name of the annotation
181
+ * @param annotationName the fully- qualified class name of the annotation
182
182
* type to look for
183
183
* @param classValuesAsString whether to convert class references to String
184
- * @return a list of maps of attributes, with the attribute name as map key
185
- * (e.g. "key") and the attribute value as map value; never {@code null} but
186
- * potentially empty if no such annotations are found
184
+ * class names for exposure as values in the returned Map, instead of Class
185
+ * references which might potentially have to be loaded first
186
+ * @return a set of maps of attributes, with each annotation attribute name
187
+ * as map key (e.g. "location") and the attribute's value as map value; never
188
+ * {@code null} but potentially empty if no such annotations are found
187
189
* @since 6.1
188
190
* @see #getAllMergedAnnotationAttributes(String)
189
191
*/
0 commit comments