All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.nosqlbench.engine.api.templating.EnumSetter Maven / Gradle / Ivy

/*
 * Copyright (c) 2022 nosqlbench
 *
 * 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 io.nosqlbench.engine.api.templating;

/**
 * Provide a way to configure a target object of type T, given an enumeration which describes the distinct property
 * types which could be configured. This method provides an efficient method for refining a template or builder object
 * with O(1) field lookup.
 * 

* The field enum doesn't limit how a field may be modified. In some cases, a single field may be iteratively built-up, * such as headers for a request object. (Multiple headers can be added, and they are all a header type, just with * different values.) In other cases, there may be a single-valued property that is replaced entirely each time it is * set. * * @param An enum type which describes distinct fields which may be modified. * @param A target configurable type to be configured. */ public interface EnumSetter, T> { /** * Given a target configurable of type T and a field type identifier from enum type K, set or add a value to the * field described by K, and then return the target configurable. * * @param target The object to be augmented. * @param field The enum which describes the type of field mutation. * @param value The object values to assign to the named field. If a given field type can be a collection, like a * map, then these might be a 2-tuple of key-value. Semantics of the value objects are always * specific to the type of field being configured. * @return A modified object, possibly a new instance, as with functional property modifiers. */ T setField(T target, F field, Object... value); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy