Uses of Interface
org.springframework.util.MultiValueMap
Packages that use MultiValueMap
Package
Description
Core support package for annotations, meta-annotations, and merged
annotations with attribute overrides.
Core support package for type introspection.
Miscellaneous utility classes, such as utilities for working with strings,
classes, collections, reflection, etc.
-
Uses of MultiValueMap in org.springframework.core.annotation
Methods in org.springframework.core.annotation that return MultiValueMapModifier and TypeMethodDescriptionstatic MultiValueMap<String,Object> AnnotatedElementUtils.getAllAnnotationAttributes(AnnotatedElement element, String annotationName) Get the annotation attributes of all annotations of the specifiedannotationNamein the annotation hierarchy above the suppliedAnnotatedElementand store the results in aMultiValueMap.static MultiValueMap<String,Object> AnnotatedElementUtils.getAllAnnotationAttributes(AnnotatedElement element, String annotationName, boolean classValuesAsString, boolean nestedAnnotationsAsMap) Get the annotation attributes of all annotations of the specifiedannotationNamein the annotation hierarchy above the suppliedAnnotatedElementand store the results in aMultiValueMap.Methods in org.springframework.core.annotation that return types with arguments of type MultiValueMapModifier and TypeMethodDescriptionstatic <A extends Annotation>
Collector<MergedAnnotation<A>,?, MultiValueMap<String, Object>> MergedAnnotationCollectors.toMultiValueMap(Function<MultiValueMap<String, Object>, MultiValueMap<String, Object>> finisher, MergedAnnotation.Adapt... adaptations) Create a newCollectorthat accumulates merged annotations to aMultiValueMapwith items added from each merged annotation as a map.static <A extends Annotation>
Collector<MergedAnnotation<A>,?, MultiValueMap<String, Object>> MergedAnnotationCollectors.toMultiValueMap(MergedAnnotation.Adapt... adaptations) Create a newCollectorthat accumulates merged annotations to aMultiValueMapwith items added from each merged annotation as a map.Method parameters in org.springframework.core.annotation with type arguments of type MultiValueMapModifier and TypeMethodDescriptionstatic <A extends Annotation>
Collector<MergedAnnotation<A>,?, MultiValueMap<String, Object>> MergedAnnotationCollectors.toMultiValueMap(Function<MultiValueMap<String, Object>, MultiValueMap<String, Object>> finisher, MergedAnnotation.Adapt... adaptations) Create a newCollectorthat accumulates merged annotations to aMultiValueMapwith items added from each merged annotation as a map.static <A extends Annotation>
Collector<MergedAnnotation<A>,?, MultiValueMap<String, Object>> MergedAnnotationCollectors.toMultiValueMap(Function<MultiValueMap<String, Object>, MultiValueMap<String, Object>> finisher, MergedAnnotation.Adapt... adaptations) Create a newCollectorthat accumulates merged annotations to aMultiValueMapwith items added from each merged annotation as a map. -
Uses of MultiValueMap in org.springframework.core.type
Methods in org.springframework.core.type that return MultiValueMapModifier and TypeMethodDescriptiondefault MultiValueMap<String,Object> AnnotatedTypeMetadata.getAllAnnotationAttributes(String annotationName) Retrieve all attributes of all annotations of the given type, if any (i.e.default MultiValueMap<String,Object> AnnotatedTypeMetadata.getAllAnnotationAttributes(String annotationName, boolean classValuesAsString) Retrieve all attributes of all annotations of the given type, if any (i.e.StandardAnnotationMetadata.getAllAnnotationAttributes(String annotationName, boolean classValuesAsString) StandardMethodMetadata.getAllAnnotationAttributes(String annotationName, boolean classValuesAsString) -
Uses of MultiValueMap in org.springframework.util
Classes in org.springframework.util that implement MultiValueMapModifier and TypeClassDescriptionclassLinkedMultiValueMap<K,V> Simple implementation ofMultiValueMapthat wraps aLinkedHashMap, storing multiple values in anArrayList.classMultiValueMapAdapter<K,V> Adapts a givenMapto theMultiValueMapcontract.Methods in org.springframework.util that return MultiValueMapModifier and TypeMethodDescriptionstatic <K,V> MultiValueMap<K, V> MultiValueMap.fromMultiValue(Map<K, List<V>> map) Return aMultiValueMap<K, V>that adapts the given multi-valueMap<K, List<V>>.static <K,V> MultiValueMap<K, V> MultiValueMap.fromSingleValue(Map<K, V> map) Return aMultiValueMap<K, V>that adapts the given single-valueMap<K, V>.static <K,V> MultiValueMap<K, V> CollectionUtils.toMultiValueMap(Map<K, List<V>> targetMap) Adapt aMap<K, List<V>>to anMultiValueMap<K, V>.static <K,V> MultiValueMap<K, V> CollectionUtils.unmodifiableMultiValueMap(MultiValueMap<? extends K, ? extends V> targetMap) Return an unmodifiable view of the specified multi-value map.Methods in org.springframework.util with parameters of type MultiValueMapModifier and TypeMethodDescriptionvoidMultiValueMap.addAll(MultiValueMap<K, V> values) Add all the values of the givenMultiValueMapto the current values.voidMultiValueMapAdapter.addAll(MultiValueMap<K, V> values) static <K,V> MultiValueMap<K, V> CollectionUtils.unmodifiableMultiValueMap(MultiValueMap<? extends K, ? extends V> targetMap) Return an unmodifiable view of the specified multi-value map.