/*
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.core.convert.value;
import java.util.List;
Author: Graeme Rocher Type parameters: - <V> – The generic value
Since: 1.0
/**
* @param <V> The generic value
* @author Graeme Rocher
* @since 1.0
*/
public interface MutableConvertibleMultiValues<V> extends ConvertibleMultiValues<V>, MutableConvertibleValues<List<V>> {
Adds a value for the given key. Note that this method will not remove items currently associated with the key.
Params: - key – The key
- value – The value
Returns: This instance
/**
* Adds a value for the given key. Note that this method will not remove items currently associated with the key.
*
* @param key The key
* @param value The value
* @return This instance
*/
MutableConvertibleMultiValues<V> add(CharSequence key, V value);
Remove the given value from the given key.
Params: - key – The key
- value – The value
Returns: This instance
/**
* Remove the given value from the given key.
*
* @param key The key
* @param value The value
* @return This instance
*/
MutableConvertibleMultiValues<V> remove(CharSequence key, V value);
Clear all values.
Returns: This instance
/**
* Clear all values.
*
* @return This instance
*/
@Override
MutableConvertibleMultiValues<V> clear();
}