Class ElementConfigurationMap<SELF extends ElementConfigurationMap<SELF>>
java.lang.Object
java.util.AbstractMap<K,V>
java.util.HashMap<K,V>
java.util.LinkedHashMap<String,Object>
com.foreach.across.modules.bootstrapui.utils.ElementConfigurationMap<SELF>
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<String,
Object>
- Direct Known Subclasses:
AutoSuggestFormElementConfiguration
,AutoSuggestFormElementConfiguration.DataSet
public class ElementConfigurationMap<SELF extends ElementConfigurationMap<SELF>>
extends LinkedHashMap<String,Object>
Base class for a set of key/values that represent the configuration settings for an element.
- Since:
- 2.0.0
- Author:
- Arne Vandamme
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,
V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object, V extends Object> -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionsetAttribute
(String key, Object value) Set an attribute on the configuration.Methods inherited from class java.util.LinkedHashMap
clear, containsValue, entrySet, forEach, get, getOrDefault, keySet, removeEldestEntry, replaceAll, values
Methods inherited from class java.util.HashMap
clone, compute, computeIfAbsent, computeIfPresent, containsKey, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, containsKey, equals, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, size
-
Constructor Details
-
ElementConfigurationMap
public ElementConfigurationMap()
-
-
Method Details
-
setAttribute
Set an attribute on the configuration. Same as callingHashMap.put(Object, Object)
except suitable for fluent API, because it returns the same instance.- Parameters:
key
- attribute keyvalue
- attribute value- Returns:
- current configuration
-