Interface IMapValueDescriptorBuilder<V>
- Type Parameters:
V- Type of the map values.
- All Superinterfaces:
org.apache.commons.lang3.builder.Builder<IMapValueDescriptor<V>>,IValueDescriptorBuilder<Map<String,V>, IMapValueBuilder<V>, IMapValueDescriptor<V>>
public interface IMapValueDescriptorBuilder<V>
extends IValueDescriptorBuilder<Map<String,V>,IMapValueBuilder<V>,IMapValueDescriptor<V>>
A
IValueDescriptorBuilder for creating a map value descriptor. Use
IValueDescriptorFactory.mapBuilder(IValueDescriptor) to create a builder.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptiondefaultValue(String key, IValueCreator<V> creator) Sets the default value for the element at the given key.default IMapValueDescriptorBuilder<V>defaultValue(String key, V value) Sets the default value for the element at the given key.description(String description) Methods inherited from interface org.apache.commons.lang3.builder.Builder
build
-
Method Details
-
defaultValue
Sets the default value for the element at the given key. The default value is taken from the map element value descriptor when no explicit default is provided.- Parameters:
key- Key in the map.creator- Value creator for the value to use for the value at the given key as the default when creating a map value.- Returns:
- This descriptor builder for chaining method calls.
-
defaultValue
Sets the default value for the element at the given key. The default value is taken from the map element value descriptor when no explicit default is provided.- Parameters:
key- Key in the map.value- Value to use for the value at the given key as the default when creating a map value.- Returns:
- This descriptor builder for chaining method calls.
-
description
- Specified by:
descriptionin interfaceIValueDescriptorBuilder<Map<String,V>, IMapValueBuilder<V>, IMapValueDescriptor<V>> - Parameters:
description- The description for the value. May be either a localized message or an I18N key.- Returns:
- This builder instance for chaining method calls.
-