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.Map
A 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 void
clear()
boolean
containsKey(java.lang.Object key)
boolean
containsValue(java.lang.Object value)
java.util.Set
entrySet()
java.lang.Object
get(java.lang.Object key)
java.lang.String
getPrefix()
Get the prefix that this map is applying.int
hashCode()
boolean
isEmpty()
java.util.Set
keySet()
java.lang.Object
put(java.lang.Object key, java.lang.Object value)
void
putAll(java.util.Map t)
java.lang.Object
remove(java.lang.Object key)
int
size()
java.util.Collection
values()
-
-
-
Method Detail
-
clear
public void clear()
- Specified by:
clear
in 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:
containsKey
in interfacejava.util.Map
-
containsValue
public boolean containsValue(java.lang.Object value)
- Specified by:
containsValue
in interfacejava.util.Map
-
entrySet
public java.util.Set entrySet()
- Specified by:
entrySet
in interfacejava.util.Map
-
get
public java.lang.Object get(java.lang.Object key)
- Specified by:
get
in interfacejava.util.Map
-
hashCode
public int hashCode()
- Specified by:
hashCode
in interfacejava.util.Map
- Overrides:
hashCode
in classjava.lang.Object
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfacejava.util.Map
-
keySet
public java.util.Set keySet()
- Specified by:
keySet
in interfacejava.util.Map
-
put
public java.lang.Object put(java.lang.Object key, java.lang.Object value)
- Specified by:
put
in interfacejava.util.Map
-
putAll
public void putAll(java.util.Map t)
- Specified by:
putAll
in interfacejava.util.Map
-
remove
public java.lang.Object remove(java.lang.Object key)
- Specified by:
remove
in interfacejava.util.Map
-
size
public int size()
- Specified by:
size
in interfacejava.util.Map
-
values
public java.util.Collection values()
- Specified by:
values
in interfacejava.util.Map
-
-