org.testifyproject.trait.PropertiesWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
A module that provides Testify's annotations
/*
* Copyright 2016-2017 Testify Project.
*
* 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
*
* http://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 org.testifyproject.trait;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
/**
*
* A contracts that specifies methods for writing property values. class.
*
*
* Note that with respect to null keys and values the behavior the methods in
* contract are dependent on the {@link Map} implementation returned by {@link #getProperties()
* }
*
*
* @author saden
*/
public interface PropertiesWriter extends PropertiesTrait {
/**
* Add the given key/value pair if it is absent.
*
* @param the value type
* @param key the key
* @param value the value
*/
default void addProperty(String key, T value) {
Map properties = getProperties();
properties.computeIfAbsent(key, p -> value);
}
/**
* Add the given element to a collection entry in the properties map with
* the given key.
*
* @param the element type
* @param key the properties map key
* @param element the element that will be added
*/
default void addListElement(String key, E element) {
Map> properties = getProperties();
List result = properties.computeIfAbsent(key, p -> new LinkedList<>());
result.add(element);
}
/**
* Add the given entryKey/entryValue pair to a map entry in the properties
* map with the given key.
*
* @param the entry key type
* @param the entry value type
* @param key the properties map key
* @param entryKey the new entry key that will be added
* @param entryValue the new entry value that will be added
*/
default void addMapEntry(String key, K entryKey, V entryValue) {
Map> properties = getProperties();
Map result = properties.computeIfAbsent(key, p -> new ConcurrentHashMap<>());
result.computeIfAbsent(entryKey, k -> entryValue);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy