Package org.javlo.navigation.data
Class PageContentMap
- java.lang.Object
-
- org.javlo.navigation.data.PageContentMap
-
- All Implemented Interfaces:
Map<String,List<ComponentMap>>
public class PageContentMap extends Object implements Map<String,List<ComponentMap>>
-
-
Constructor Summary
Constructors Constructor Description PageContentMap(ContentContext ctx, MenuElement page)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<String,List<ComponentMap>>>entrySet()List<ComponentMap>get(Object key)booleanisEmpty()Set<String>keySet()List<ComponentMap>put(String key, List<ComponentMap> value)voidputAll(Map<? extends String,? extends List<ComponentMap>> m)List<ComponentMap>remove(Object key)intsize()Collection<List<ComponentMap>>values()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Constructor Detail
-
PageContentMap
public PageContentMap(ContentContext ctx, MenuElement page)
-
-
Method Detail
-
size
public int size()
- Specified by:
sizein interfaceMap<String,List<ComponentMap>>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceMap<String,List<ComponentMap>>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<String,List<ComponentMap>>
-
get
public List<ComponentMap> get(Object key)
- Specified by:
getin interfaceMap<String,List<ComponentMap>>
-
put
public List<ComponentMap> put(String key, List<ComponentMap> value)
- Specified by:
putin interfaceMap<String,List<ComponentMap>>
-
remove
public List<ComponentMap> remove(Object key)
- Specified by:
removein interfaceMap<String,List<ComponentMap>>
-
putAll
public void putAll(Map<? extends String,? extends List<ComponentMap>> m)
- Specified by:
putAllin interfaceMap<String,List<ComponentMap>>
-
clear
public void clear()
- Specified by:
clearin interfaceMap<String,List<ComponentMap>>
-
keySet
public Set<String> keySet()
- Specified by:
keySetin interfaceMap<String,List<ComponentMap>>
-
values
public Collection<List<ComponentMap>> values()
- Specified by:
valuesin interfaceMap<String,List<ComponentMap>>
-
entrySet
public Set<Map.Entry<String,List<ComponentMap>>> entrySet()
- Specified by:
entrySetin interfaceMap<String,List<ComponentMap>>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<String,List<ComponentMap>>
-
-