Package com.adobe.granite.ui.components
Class BulkEditValueMap
- java.lang.Object
 - 
- com.adobe.granite.ui.components.BulkEditValueMap
 
 
- 
- All Implemented Interfaces:
 java.util.Map<java.lang.String,java.lang.Object>,ValueMap
public class BulkEditValueMap extends java.lang.Object implements ValueMap
BulkEditValueMap is a ValueMap specific to the needs of Bulk Editing. It is aimed at merging the given Resources' ValueMaps.Please not that the merge is actually "virtual" since under the hood the ValueMap will always be empty. In other words,
get(Object key)performs an on-demand merge for the passed key.In addition to providing the actual (merged) value for a given key, this specific ValueMap can also tell if a given key has a mixed value using
#get(key + Field.IS_MIXED_SUFFIX). 
- 
- 
Constructor Summary
Constructors Constructor Description BulkEditValueMap(java.util.List<Resource> resources)BulkEditValueMap(java.util.List<Resource> resources, java.util.Map<java.lang.String,ValueFetchStrategy> fetchStrategies) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(java.lang.Object key)booleancontainsValue(java.lang.Object value)java.util.Set<java.util.Map.Entry<java.lang.String,java.lang.Object>>entrySet()java.lang.Objectget(java.lang.Object key)Retrieves the merged value for the passed key.<T> Tget(java.lang.String name, java.lang.Class<T> type)Get a named property and convert it into the given type.<T> Tget(java.lang.String name, T defaultValue)Get a named property and convert it into the given type.booleanisEmpty()java.util.Set<java.lang.String>keySet()java.lang.Objectput(java.lang.String key, java.lang.Object value)voidputAll(java.util.Map<? extends java.lang.String,? extends java.lang.Object> t)java.lang.Objectremove(java.lang.Object key)intsize()java.util.Collection<java.lang.Object>values() 
 - 
 
- 
- 
Constructor Detail
- 
BulkEditValueMap
public BulkEditValueMap(@Nonnull java.util.List<Resource> resources) 
- 
BulkEditValueMap
public BulkEditValueMap(@Nonnull java.util.List<Resource> resources, @Nonnull java.util.Map<java.lang.String,ValueFetchStrategy> fetchStrategies) 
 - 
 
- 
Method Detail
- 
get
public java.lang.Object get(java.lang.Object key)
Retrieves the merged value for the passed key. Calling#get(key + Field.IS_MIXED_SUFFIX)returnstrueif the value is mixed;falseotherwise. If the value is non-existentnullis returned.- Specified by:
 getin interfacejava.util.Map<java.lang.String,java.lang.Object>- Parameters:
 key- The key of the value to retrieve.- Returns:
 - The merged value for the passed key; or a boolean telling if the
         value is mixed or not (if the key ends with
         
Field.IS_MIXED_SUFFIX). 
 
- 
get
public <T> T get(@Nonnull java.lang.String name, @Nonnull java.lang.Class<T> type)Description copied from interface:ValueMapGet a named property and convert it into the given type. This method does not support conversion into a primitive type or an array of a primitive type. It should returnnullin this case. 
- 
get
@Nonnull public <T> T get(@Nonnull java.lang.String name, @Nonnull T defaultValue)Description copied from interface:ValueMapGet a named property and convert it into the given type. This method does not support conversion into a primitive type or an array of a primitive type. It should return the default value in this case.
Implementation hint: In the past it was allowed to call this with a 2nd parameter beingnull. Therefore all implementations should internally callMap.get(Object)when the 2nd parameter has valuenull.- Specified by:
 getin interfaceValueMap- Type Parameters:
 T- The expected type- Parameters:
 name- The name of the propertydefaultValue- The default value to use if the named property does not exist or cannot be converted to the requested type. The default value is also used to define the type to convert the value to. Must not benull. If you want to returnnullby default rather rely onValueMap.get(String, Class).- Returns:
 - Return named value converted to type T or the default value if non existing or can't be converted.
 
 
- 
size
public int size()
- Specified by:
 sizein interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
isEmpty
public boolean isEmpty()
- Specified by:
 isEmptyin interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
containsKey
public boolean containsKey(java.lang.Object key)
- Specified by:
 containsKeyin interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
containsValue
public boolean containsValue(java.lang.Object value)
- Specified by:
 containsValuein interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
keySet
public java.util.Set<java.lang.String> keySet()
- Specified by:
 keySetin interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
values
public java.util.Collection<java.lang.Object> values()
- Specified by:
 valuesin interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
entrySet
public java.util.Set<java.util.Map.Entry<java.lang.String,java.lang.Object>> entrySet()
- Specified by:
 entrySetin interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
clear
public void clear()
- Specified by:
 clearin interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
put
public java.lang.Object put(java.lang.String key, java.lang.Object value)- Specified by:
 putin interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
putAll
public void putAll(java.util.Map<? extends java.lang.String,? extends java.lang.Object> t)
- Specified by:
 putAllin interfacejava.util.Map<java.lang.String,java.lang.Object>
 
- 
remove
public java.lang.Object remove(java.lang.Object key)
- Specified by:
 removein interfacejava.util.Map<java.lang.String,java.lang.Object>
 
 - 
 
 -