Interface ValueConfigurer<T>
-
- Type Parameters:
T- the type of the parameter value, e.g., a method, an attribute, etc.
- All Known Implementing Classes:
ParameterConfigurer
public interface ValueConfigurer<T>A function which can configure a (parameter) value of a given type.- Author:
- Holger Eichelberger, SSE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigure(T value)Configures the parameter with the given value.
-
-
-
Method Detail
-
configure
void configure(T value) throws java.util.concurrent.ExecutionException
Configures the parameter with the given value.- Parameters:
value- the value to use- Throws:
java.util.concurrent.ExecutionException- if configuring the value fails for some reason
-
-