Package com.sun.javatest.util
Class PrefixMap
- java.lang.Object
-
- com.sun.javatest.util.PrefixMap
-
- All Implemented Interfaces:
java.util.Map
public class PrefixMap extends java.lang.Object implements java.util.MapA map whose entries are stored in a parent map by prefixing the key names with a specific string.
-
-
Constructor Summary
Constructors Constructor Description PrefixMap(java.util.Map map, java.lang.String prefix)Create a map whose entries are stored in a parent map by prefixing the key names with a specific string.
-
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.SetentrySet()java.lang.Objectget(java.lang.Object key)java.lang.StringgetPrefix()Get the prefix that this map is applying.inthashCode()booleanisEmpty()java.util.SetkeySet()java.lang.Objectput(java.lang.Object key, java.lang.Object value)voidputAll(java.util.Map t)java.lang.Objectremove(java.lang.Object key)intsize()java.util.Collectionvalues()
-
-
-
Method Detail
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Map
-
getPrefix
public java.lang.String getPrefix()
Get the prefix that this map is applying. This is the value that was supplied to the constructor. This class reserves the right to return a String which is not reference equivalent to the given string.- Returns:
- The prefix string, which may be a zero length string.
-
containsKey
public boolean containsKey(java.lang.Object key)
- Specified by:
containsKeyin interfacejava.util.Map
-
containsValue
public boolean containsValue(java.lang.Object value)
- Specified by:
containsValuein interfacejava.util.Map
-
entrySet
public java.util.Set entrySet()
- Specified by:
entrySetin interfacejava.util.Map
-
get
public java.lang.Object get(java.lang.Object key)
- Specified by:
getin interfacejava.util.Map
-
hashCode
public int hashCode()
- Specified by:
hashCodein interfacejava.util.Map- Overrides:
hashCodein classjava.lang.Object
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfacejava.util.Map
-
keySet
public java.util.Set keySet()
- Specified by:
keySetin interfacejava.util.Map
-
put
public java.lang.Object put(java.lang.Object key, java.lang.Object value)- Specified by:
putin interfacejava.util.Map
-
putAll
public void putAll(java.util.Map t)
- Specified by:
putAllin interfacejava.util.Map
-
remove
public java.lang.Object remove(java.lang.Object key)
- Specified by:
removein interfacejava.util.Map
-
size
public int size()
- Specified by:
sizein interfacejava.util.Map
-
values
public java.util.Collection values()
- Specified by:
valuesin interfacejava.util.Map
-
-