Package org.drools.core.rule
Class XpathBackReference.MapAdapter
- java.lang.Object
-
- org.drools.core.rule.XpathBackReference.MapAdapter
-
- All Implemented Interfaces:
Map<String,Declaration>
- Enclosing class:
- XpathBackReference
public class XpathBackReference.MapAdapter extends Object implements Map<String,Declaration>
-
-
Constructor Summary
Constructors Constructor Description MapAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object key)booleancontainsValue(Object value)Set<Map.Entry<String,Declaration>>entrySet()Declarationget(Object key)booleanisEmpty()Set<String>keySet()Declarationput(String key, Declaration value)voidputAll(Map<? extends String,? extends Declaration> m)Declarationremove(Object key)intsize()Collection<Declaration>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
-
-
-
-
Method Detail
-
size
public int size()
- Specified by:
sizein interfaceMap<String,Declaration>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceMap<String,Declaration>
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap<String,Declaration>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap<String,Declaration>
-
get
public Declaration get(Object key)
- Specified by:
getin interfaceMap<String,Declaration>
-
put
public Declaration put(String key, Declaration value)
- Specified by:
putin interfaceMap<String,Declaration>
-
remove
public Declaration remove(Object key)
- Specified by:
removein interfaceMap<String,Declaration>
-
putAll
public void putAll(Map<? extends String,? extends Declaration> m)
- Specified by:
putAllin interfaceMap<String,Declaration>
-
clear
public void clear()
- Specified by:
clearin interfaceMap<String,Declaration>
-
values
public Collection<Declaration> values()
- Specified by:
valuesin interfaceMap<String,Declaration>
-
entrySet
public Set<Map.Entry<String,Declaration>> entrySet()
- Specified by:
entrySetin interfaceMap<String,Declaration>
-
-