Class CallFixtureMap
- java.lang.Object
-
- org.drools.workbench.models.testscenarios.shared.CallFixtureMap
-
- All Implemented Interfaces:
Map<String,FixtureList>,Fixture
public class CallFixtureMap extends Object implements Fixture, Map<String,FixtureList>
-
-
Constructor Summary
Constructors Constructor Description CallFixtureMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontainsKey(Object o)booleancontainsValue(Object o)Set<Map.Entry<String,FixtureList>>entrySet()FixtureListget(Object o)booleanisEmpty()Set<String>keySet()FixtureListput(String s, FixtureList fixtures)voidputAll(Map<? extends String,? extends FixtureList> map)FixtureListremove(Object o)intsize()Collection<FixtureList>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,FixtureList>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceMap<String,FixtureList>
-
containsKey
public boolean containsKey(Object o)
- Specified by:
containsKeyin interfaceMap<String,FixtureList>
-
containsValue
public boolean containsValue(Object o)
- Specified by:
containsValuein interfaceMap<String,FixtureList>
-
get
public FixtureList get(Object o)
- Specified by:
getin interfaceMap<String,FixtureList>
-
put
public FixtureList put(String s, FixtureList fixtures)
- Specified by:
putin interfaceMap<String,FixtureList>
-
remove
public FixtureList remove(Object o)
- Specified by:
removein interfaceMap<String,FixtureList>
-
putAll
public void putAll(Map<? extends String,? extends FixtureList> map)
- Specified by:
putAllin interfaceMap<String,FixtureList>
-
clear
public void clear()
- Specified by:
clearin interfaceMap<String,FixtureList>
-
values
public Collection<FixtureList> values()
- Specified by:
valuesin interfaceMap<String,FixtureList>
-
entrySet
public Set<Map.Entry<String,FixtureList>> entrySet()
- Specified by:
entrySetin interfaceMap<String,FixtureList>
-
-