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 void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Set<Map.Entry<String,List<ComponentMap>>>
entrySet()
List<ComponentMap>
get(Object key)
boolean
isEmpty()
Set<String>
keySet()
List<ComponentMap>
put(String key, List<ComponentMap> value)
void
putAll(Map<? extends String,? extends List<ComponentMap>> m)
List<ComponentMap>
remove(Object key)
int
size()
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:
size
in interfaceMap<String,List<ComponentMap>>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceMap<String,List<ComponentMap>>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<String,List<ComponentMap>>
-
get
public List<ComponentMap> get(Object key)
- Specified by:
get
in interfaceMap<String,List<ComponentMap>>
-
put
public List<ComponentMap> put(String key, List<ComponentMap> value)
- Specified by:
put
in interfaceMap<String,List<ComponentMap>>
-
remove
public List<ComponentMap> remove(Object key)
- Specified by:
remove
in interfaceMap<String,List<ComponentMap>>
-
putAll
public void putAll(Map<? extends String,? extends List<ComponentMap>> m)
- Specified by:
putAll
in interfaceMap<String,List<ComponentMap>>
-
clear
public void clear()
- Specified by:
clear
in interfaceMap<String,List<ComponentMap>>
-
keySet
public Set<String> keySet()
- Specified by:
keySet
in interfaceMap<String,List<ComponentMap>>
-
values
public Collection<List<ComponentMap>> values()
- Specified by:
values
in interfaceMap<String,List<ComponentMap>>
-
entrySet
public Set<Map.Entry<String,List<ComponentMap>>> entrySet()
- Specified by:
entrySet
in interfaceMap<String,List<ComponentMap>>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<String,List<ComponentMap>>
-
-