com.sun.javatest.util
public class PrefixMap extends java.lang.Object implements java.util.Map
Constructor and 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.
|
Modifier and Type | Method and 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() |
public PrefixMap(java.util.Map map, java.lang.String prefix)
map
- the parent mapprefix
- the prefix with which to prefix the entries in the
parent mappublic void clear()
clear
in interface java.util.Map
public java.lang.String getPrefix()
public boolean containsKey(java.lang.Object key)
containsKey
in interface java.util.Map
public boolean containsValue(java.lang.Object value)
containsValue
in interface java.util.Map
public java.util.Set entrySet()
entrySet
in interface java.util.Map
public java.lang.Object get(java.lang.Object key)
get
in interface java.util.Map
public int hashCode()
hashCode
in interface java.util.Map
hashCode
in class java.lang.Object
public boolean isEmpty()
isEmpty
in interface java.util.Map
public java.util.Set keySet()
keySet
in interface java.util.Map
public java.lang.Object put(java.lang.Object key, java.lang.Object value)
put
in interface java.util.Map
public void putAll(java.util.Map t)
putAll
in interface java.util.Map
public java.lang.Object remove(java.lang.Object key)
remove
in interface java.util.Map
public int size()
size
in interface java.util.Map
public java.util.Collection values()
values
in interface java.util.Map
Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.