Uses of Class
software.amazon.awssdk.utils.AttributeMap.Key
Packages that use AttributeMap.Key
-
Uses of AttributeMap.Key in software.amazon.awssdk.utils
Methods in software.amazon.awssdk.utils with parameters of type AttributeMap.KeyModifier and TypeMethodDescription<T> TAttributeMap.Builder.computeIfAbsent(AttributeMap.Key<T> key, Supplier<T> valueIfAbsent) Add a mapping between the provided key and value, if the current value for the key is null.<T> booleanAttributeMap.containsKey(AttributeMap.Key<T> typedKey) Return true if the provided key is configured in this map.<T> TAttributeMap.Builder.get(AttributeMap.Key<T> key) Get the value for the provided key.<T> TAttributeMap.get(AttributeMap.Key<T> key) Get the value associated with the provided key from this map.<T> TAttributeMap.LazyValueSource.get(AttributeMap.Key<T> sourceKey) AttributeMap.Builder.put(AttributeMap.Key<T> key, T value) Add a mapping between the provided key and value.AttributeMap.Builder.putLazy(AttributeMap.Key<T> key, AttributeMap.LazyValue<T> lazyValue) Add a mapping between the provided key and value provider.AttributeMap.Builder.putLazyIfAbsent(AttributeMap.Key<T> key, AttributeMap.LazyValue<T> lazyValue) Equivalent toAttributeMap.Builder.putLazy(Key, LazyValue), but does not assign the value if there is already a non-null value assigned for the provided key.Method parameters in software.amazon.awssdk.utils with type arguments of type AttributeMap.KeyModifier and TypeMethodDescriptionAttributeMap.Builder.putAll(Map<? extends AttributeMap.Key<?>, ?> attributes) Adds all the attributes from the map provided.